Enum FormType

    • Enum Constant Detail

      • GENERIC

        public static final FormType GENERIC
      • OBJECT

        public static final FormType OBJECT
      • FOLDER

        public static final FormType FOLDER
      • RECORD_SET

        public static final FormType RECORD_SET
      • RECORD

        public static final FormType RECORD
      • LIST

        public static final FormType LIST
      • CHOICE

        public static final FormType CHOICE
      • FOLDER_CHOICE

        public static final FormType FOLDER_CHOICE
      • CONSTANTS

        public static final FormType CONSTANTS
      • SEARCH

        public static final FormType SEARCH
      • REPORT

        public static final FormType REPORT
      • REPORT_SETTINGS

        public static final FormType REPORT_SETTINGS
      • REPORT_VARIANT

        public static final FormType REPORT_VARIANT
      • SAVE

        public static final FormType SAVE
      • LOAD

        public static final FormType LOAD
      • DYNAMIC_LIST

        public static final FormType DYNAMIC_LIST
      • CHANGE_HISTORY

        public static final FormType CHANGE_HISTORY
      • VERSION_DATA

        public static final FormType VERSION_DATA
      • VERSION_DIFFERENCES

        public static final FormType VERSION_DIFFERENCES
    • Method Detail

      • values

        public static FormType[] 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 (FormType c : FormType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static FormType 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