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_BOXGenerated enum value forUiType.CHECK_BOXvalue defined at extensionsapproductconfigfacades.CHECK_BOX_LISTGenerated enum value forUiType.CHECK_BOX_LISTvalue defined at extensionsapproductconfigfacades.DROPDOWNGenerated enum value forUiType.DROPDOWNvalue defined at extensionsapproductconfigfacades.DROPDOWN_ADDITIONAL_INPUTGenerated enum value forUiType.DROPDOWN_ADDITIONAL_INPUTvalue defined at extensionsapproductconfigfacades.MULTI_SELECTION_IMAGEGenerated enum value forUiType.MULTI_SELECTION_IMAGEvalue defined at extensionsapproductconfigfacades.NOT_IMPLEMENTEDGenerated enum value forUiType.NOT_IMPLEMENTEDvalue defined at extensionsapproductconfigfacades.NUMERICGenerated enum value forUiType.NUMERICvalue defined at extensionsapproductconfigfacades.RADIO_BUTTONGenerated enum value forUiType.RADIO_BUTTONvalue defined at extensionsapproductconfigfacades.RADIO_BUTTON_ADDITIONAL_INPUTGenerated enum value forUiType.RADIO_BUTTON_ADDITIONAL_INPUTvalue defined at extensionsapproductconfigfacades.READ_ONLYGenerated enum value forUiType.READ_ONLYvalue defined at extensionsapproductconfigfacades.READ_ONLY_MULTI_SELECTION_IMAGEGenerated enum value forUiType.READ_ONLY_MULTI_SELECTION_IMAGEvalue defined at extensionsapproductconfigfacades.READ_ONLY_SINGLE_SELECTION_IMAGEGenerated enum value forUiType.READ_ONLY_SINGLE_SELECTION_IMAGEvalue defined at extensionsapproductconfigfacades.SINGLE_SELECTION_IMAGEGenerated enum value forUiType.SINGLE_SELECTION_IMAGEvalue defined at extensionsapproductconfigfacades.STRINGGenerated enum value forUiType.STRINGvalue defined at extensionsapproductconfigfacades.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UiTypevalueOf(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.STRINGvalue defined at extensionsapproductconfigfacades.
-
NUMERIC
public static final UiType NUMERIC
Generated enum value forUiType.NUMERICvalue defined at extensionsapproductconfigfacades.
-
CHECK_BOX
public static final UiType CHECK_BOX
Generated enum value forUiType.CHECK_BOXvalue defined at extensionsapproductconfigfacades.
-
CHECK_BOX_LIST
public static final UiType CHECK_BOX_LIST
Generated enum value forUiType.CHECK_BOX_LISTvalue defined at extensionsapproductconfigfacades.
-
RADIO_BUTTON
public static final UiType RADIO_BUTTON
Generated enum value forUiType.RADIO_BUTTONvalue defined at extensionsapproductconfigfacades.
-
RADIO_BUTTON_ADDITIONAL_INPUT
public static final UiType RADIO_BUTTON_ADDITIONAL_INPUT
Generated enum value forUiType.RADIO_BUTTON_ADDITIONAL_INPUTvalue defined at extensionsapproductconfigfacades.
-
DROPDOWN
public static final UiType DROPDOWN
Generated enum value forUiType.DROPDOWNvalue defined at extensionsapproductconfigfacades.
-
DROPDOWN_ADDITIONAL_INPUT
public static final UiType DROPDOWN_ADDITIONAL_INPUT
Generated enum value forUiType.DROPDOWN_ADDITIONAL_INPUTvalue defined at extensionsapproductconfigfacades.
-
READ_ONLY
public static final UiType READ_ONLY
Generated enum value forUiType.READ_ONLYvalue defined at extensionsapproductconfigfacades.
-
NOT_IMPLEMENTED
public static final UiType NOT_IMPLEMENTED
Generated enum value forUiType.NOT_IMPLEMENTEDvalue defined at extensionsapproductconfigfacades.
-
SINGLE_SELECTION_IMAGE
public static final UiType SINGLE_SELECTION_IMAGE
Generated enum value forUiType.SINGLE_SELECTION_IMAGEvalue defined at extensionsapproductconfigfacades.
-
MULTI_SELECTION_IMAGE
public static final UiType MULTI_SELECTION_IMAGE
Generated enum value forUiType.MULTI_SELECTION_IMAGEvalue 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_IMAGEvalue 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_IMAGEvalue 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
-
-