Enum UiType
- java.lang.Object
-
- java.lang.Enum<UiType>
-
- de.hybris.platform.sap.productconfig.facades.UiType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHECK_BOX
Generated enum value forUiType.CHECK_BOX
value defined at extensionsapproductconfigfacades
.CHECK_BOX_LIST
Generated enum value forUiType.CHECK_BOX_LIST
value defined at extensionsapproductconfigfacades
.DROPDOWN
Generated enum value forUiType.DROPDOWN
value defined at extensionsapproductconfigfacades
.DROPDOWN_ADDITIONAL_INPUT
Generated enum value forUiType.DROPDOWN_ADDITIONAL_INPUT
value defined at extensionsapproductconfigfacades
.MULTI_SELECTION_IMAGE
Generated enum value forUiType.MULTI_SELECTION_IMAGE
value defined at extensionsapproductconfigfacades
.NOT_IMPLEMENTED
Generated enum value forUiType.NOT_IMPLEMENTED
value defined at extensionsapproductconfigfacades
.NUMERIC
Generated enum value forUiType.NUMERIC
value defined at extensionsapproductconfigfacades
.RADIO_BUTTON
Generated enum value forUiType.RADIO_BUTTON
value defined at extensionsapproductconfigfacades
.RADIO_BUTTON_ADDITIONAL_INPUT
Generated enum value forUiType.RADIO_BUTTON_ADDITIONAL_INPUT
value defined at extensionsapproductconfigfacades
.READ_ONLY
Generated enum value forUiType.READ_ONLY
value defined at extensionsapproductconfigfacades
.READ_ONLY_MULTI_SELECTION_IMAGE
Generated enum value forUiType.READ_ONLY_MULTI_SELECTION_IMAGE
value defined at extensionsapproductconfigfacades
.READ_ONLY_SINGLE_SELECTION_IMAGE
Generated enum value forUiType.READ_ONLY_SINGLE_SELECTION_IMAGE
value defined at extensionsapproductconfigfacades
.SINGLE_SELECTION_IMAGE
Generated enum value forUiType.SINGLE_SELECTION_IMAGE
value defined at extensionsapproductconfigfacades
.STRING
Generated enum value forUiType.STRING
value defined at extensionsapproductconfigfacades
.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UiType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UiType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRING
public static final UiType STRING
Generated enum value forUiType.STRING
value defined at extensionsapproductconfigfacades
.
-
NUMERIC
public static final UiType NUMERIC
Generated enum value forUiType.NUMERIC
value defined at extensionsapproductconfigfacades
.
-
CHECK_BOX
public static final UiType CHECK_BOX
Generated enum value forUiType.CHECK_BOX
value defined at extensionsapproductconfigfacades
.
-
CHECK_BOX_LIST
public static final UiType CHECK_BOX_LIST
Generated enum value forUiType.CHECK_BOX_LIST
value defined at extensionsapproductconfigfacades
.
-
RADIO_BUTTON
public static final UiType RADIO_BUTTON
Generated enum value forUiType.RADIO_BUTTON
value defined at extensionsapproductconfigfacades
.
-
RADIO_BUTTON_ADDITIONAL_INPUT
public static final UiType RADIO_BUTTON_ADDITIONAL_INPUT
Generated enum value forUiType.RADIO_BUTTON_ADDITIONAL_INPUT
value defined at extensionsapproductconfigfacades
.
-
DROPDOWN
public static final UiType DROPDOWN
Generated enum value forUiType.DROPDOWN
value defined at extensionsapproductconfigfacades
.
-
DROPDOWN_ADDITIONAL_INPUT
public static final UiType DROPDOWN_ADDITIONAL_INPUT
Generated enum value forUiType.DROPDOWN_ADDITIONAL_INPUT
value defined at extensionsapproductconfigfacades
.
-
READ_ONLY
public static final UiType READ_ONLY
Generated enum value forUiType.READ_ONLY
value defined at extensionsapproductconfigfacades
.
-
NOT_IMPLEMENTED
public static final UiType NOT_IMPLEMENTED
Generated enum value forUiType.NOT_IMPLEMENTED
value defined at extensionsapproductconfigfacades
.
-
SINGLE_SELECTION_IMAGE
public static final UiType SINGLE_SELECTION_IMAGE
Generated enum value forUiType.SINGLE_SELECTION_IMAGE
value defined at extensionsapproductconfigfacades
.
-
MULTI_SELECTION_IMAGE
public static final UiType MULTI_SELECTION_IMAGE
Generated enum value forUiType.MULTI_SELECTION_IMAGE
value defined at extensionsapproductconfigfacades
.
-
READ_ONLY_SINGLE_SELECTION_IMAGE
public static final UiType READ_ONLY_SINGLE_SELECTION_IMAGE
Generated enum value forUiType.READ_ONLY_SINGLE_SELECTION_IMAGE
value defined at extensionsapproductconfigfacades
.
-
READ_ONLY_MULTI_SELECTION_IMAGE
public static final UiType READ_ONLY_MULTI_SELECTION_IMAGE
Generated enum value forUiType.READ_ONLY_MULTI_SELECTION_IMAGE
value defined at extensionsapproductconfigfacades
.
-
-
Method Detail
-
values
public static UiType[] 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 (UiType c : UiType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UiType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-