Enum InputType

    • Enum Constant Detail

      • PRODUCT

        public static final InputType PRODUCT
      • PRODUCTGROUP

        public static final InputType PRODUCTGROUP
      • CUSTOMER

        public static final InputType CUSTOMER
      • CUSTOMERGROUP

        public static final InputType CUSTOMERGROUP
      • USERENTRY

        public static final InputType USERENTRY
      • STRINGUSERENTRY

        public static final InputType STRINGUSERENTRY
      • OPTION

        public static final InputType OPTION
      • INTEGERUSERENTRY

        public static final InputType INTEGERUSERENTRY
      • BOOLEANUSERENTRY

        public static final InputType BOOLEANUSERENTRY
      • DATEUSERENTRY

        public static final InputType DATEUSERENTRY
      • TIMEUSERENTRY

        public static final InputType TIMEUSERENTRY
      • DATETIMEUSERENTRY

        public static final InputType DATETIMEUSERENTRY
      • MULTITIERENTRY

        public static final InputType MULTITIERENTRY
      • INPUTMATRIX

        public static final InputType INPUTMATRIX
      • OPTIONS

        public static final InputType OPTIONS
      • BOOLEAN

        public static final InputType BOOLEAN
      • MATRIXLOOKUP

        public static final InputType MATRIXLOOKUP
      • LOOKUP

        public static final InputType LOOKUP
      • FILTERBUILDER

        public static final InputType FILTERBUILDER
      • DMFILTERBUILDER

        public static final InputType DMFILTERBUILDER
      • DMSOURCE

        public static final InputType DMSOURCE
      • DMFIELD

        public static final InputType DMFIELD
      • DMFIELDS

        public static final InputType DMFIELDS
      • DMDIMFILTER

        public static final InputType DMDIMFILTER
      • REBATEAGREEMENT

        public static final InputType REBATEAGREEMENT
      • CONFIGURATOR

        public static final InputType CONFIGURATOR
      • HIDDEN

        public static final InputType HIDDEN
      • INLINECONFIGURATOR

        public static final InputType INLINECONFIGURATOR
      • TEXTUSERENTRY

        public static final InputType TEXTUSERENTRY
      • PARSABLEINPUTFILE

        public static final InputType PARSABLEINPUTFILE
      • DATERANGEUSERENTRY

        public static final InputType DATERANGEUSERENTRY
      • BUTTON

        public static final InputType BUTTON
    • Method Detail

      • values

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

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