Enum EFormFieldTyp

    • Enum Constant Detail

      • CHECKBOX

        public static final EFormFieldTyp CHECKBOX
        The checkbox type, ie. a INPUT form element of type checkbox that has two states, checked and not checked.
      • SELECT

        public static final EFormFieldTyp SELECT
        The select type, ie. a SELECT form element with several options from which one can be selected.
      • TEXTAREA

        public static final EFormFieldTyp TEXTAREA
        The textarea type, ie. a TEXTAREA form element for textual input that support multiple lines.
      • TEXTFIELD

        public static final EFormFieldTyp TEXTFIELD
        The textfield type, ie. a INPUT form element of type text that supports only a single line of text.
      • UPLOAD

        public static final EFormFieldTyp UPLOAD
        The upload type, ie. a UPLOAD form element of type file that can be used to upload file from the file system.
      • WIDGET

        public static final EFormFieldTyp WIDGET
        The widget type, ie. any form element supplied by a widget plugin.
      • UNKNOWN

        public static final EFormFieldTyp UNKNOWN
        The unknown type, ie. all form elements that are not of one of the other types. Includes, for example, spacer and image elements.
    • Method Detail

      • values

        public static EFormFieldTyp[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (EFormFieldTyp c : EFormFieldTyp.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static EFormFieldTyp valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null