Enum UiType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<UiType>

    public enum UiType
    extends java.lang.Enum<UiType>
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      CHECK_BOX
      Generated enum value for UiType.CHECK_BOX value defined at extension sapproductconfigfacades.
      CHECK_BOX_LIST
      Generated enum value for UiType.CHECK_BOX_LIST value defined at extension sapproductconfigfacades.
      DROPDOWN
      Generated enum value for UiType.DROPDOWN value defined at extension sapproductconfigfacades.
      DROPDOWN_ADDITIONAL_INPUT
      Generated enum value for UiType.DROPDOWN_ADDITIONAL_INPUT value defined at extension sapproductconfigfacades.
      MULTI_SELECTION_IMAGE
      Generated enum value for UiType.MULTI_SELECTION_IMAGE value defined at extension sapproductconfigfacades.
      NOT_IMPLEMENTED
      Generated enum value for UiType.NOT_IMPLEMENTED value defined at extension sapproductconfigfacades.
      NUMERIC
      Generated enum value for UiType.NUMERIC value defined at extension sapproductconfigfacades.
      RADIO_BUTTON
      Generated enum value for UiType.RADIO_BUTTON value defined at extension sapproductconfigfacades.
      RADIO_BUTTON_ADDITIONAL_INPUT
      Generated enum value for UiType.RADIO_BUTTON_ADDITIONAL_INPUT value defined at extension sapproductconfigfacades.
      READ_ONLY
      Generated enum value for UiType.READ_ONLY value defined at extension sapproductconfigfacades.
      READ_ONLY_MULTI_SELECTION_IMAGE
      Generated enum value for UiType.READ_ONLY_MULTI_SELECTION_IMAGE value defined at extension sapproductconfigfacades.
      READ_ONLY_SINGLE_SELECTION_IMAGE
      Generated enum value for UiType.READ_ONLY_SINGLE_SELECTION_IMAGE value defined at extension sapproductconfigfacades.
      SINGLE_SELECTION_IMAGE
      Generated enum value for UiType.SINGLE_SELECTION_IMAGE value defined at extension sapproductconfigfacades.
      STRING
      Generated enum value for UiType.STRING value defined at extension sapproductconfigfacades.
    • 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.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • STRING

        public static final UiType STRING
        Generated enum value for UiType.STRING value defined at extension sapproductconfigfacades.
      • NUMERIC

        public static final UiType NUMERIC
        Generated enum value for UiType.NUMERIC value defined at extension sapproductconfigfacades.
      • CHECK_BOX

        public static final UiType CHECK_BOX
        Generated enum value for UiType.CHECK_BOX value defined at extension sapproductconfigfacades.
      • CHECK_BOX_LIST

        public static final UiType CHECK_BOX_LIST
        Generated enum value for UiType.CHECK_BOX_LIST value defined at extension sapproductconfigfacades.
      • RADIO_BUTTON

        public static final UiType RADIO_BUTTON
        Generated enum value for UiType.RADIO_BUTTON value defined at extension sapproductconfigfacades.
      • RADIO_BUTTON_ADDITIONAL_INPUT

        public static final UiType RADIO_BUTTON_ADDITIONAL_INPUT
        Generated enum value for UiType.RADIO_BUTTON_ADDITIONAL_INPUT value defined at extension sapproductconfigfacades.
      • DROPDOWN

        public static final UiType DROPDOWN
        Generated enum value for UiType.DROPDOWN value defined at extension sapproductconfigfacades.
      • DROPDOWN_ADDITIONAL_INPUT

        public static final UiType DROPDOWN_ADDITIONAL_INPUT
        Generated enum value for UiType.DROPDOWN_ADDITIONAL_INPUT value defined at extension sapproductconfigfacades.
      • READ_ONLY

        public static final UiType READ_ONLY
        Generated enum value for UiType.READ_ONLY value defined at extension sapproductconfigfacades.
      • NOT_IMPLEMENTED

        public static final UiType NOT_IMPLEMENTED
        Generated enum value for UiType.NOT_IMPLEMENTED value defined at extension sapproductconfigfacades.
      • SINGLE_SELECTION_IMAGE

        public static final UiType SINGLE_SELECTION_IMAGE
        Generated enum value for UiType.SINGLE_SELECTION_IMAGE value defined at extension sapproductconfigfacades.
      • MULTI_SELECTION_IMAGE

        public static final UiType MULTI_SELECTION_IMAGE
        Generated enum value for UiType.MULTI_SELECTION_IMAGE value defined at extension sapproductconfigfacades.
      • READ_ONLY_SINGLE_SELECTION_IMAGE

        public static final UiType READ_ONLY_SINGLE_SELECTION_IMAGE
        Generated enum value for UiType.READ_ONLY_SINGLE_SELECTION_IMAGE value defined at extension sapproductconfigfacades.
      • READ_ONLY_MULTI_SELECTION_IMAGE

        public static final UiType READ_ONLY_MULTI_SELECTION_IMAGE
        Generated enum value for UiType.READ_ONLY_MULTI_SELECTION_IMAGE value defined at extension sapproductconfigfacades.
    • 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 name
        java.lang.NullPointerException - if the argument is null