Package net.pricefx.common.api
Enum InputType
-
- All Implemented Interfaces:
Serializable
,Comparable<InputType>
public enum InputType extends Enum<InputType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InputType
valueOf(String name)
Returns the enum constant of this type with the specified name.static InputType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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
-
RADIO
public static final InputType RADIO
-
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
-
USER
public static final InputType USER
-
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 nameNullPointerException
- if the argument is null
-
-