Enum Class Style

java.lang.Object
java.lang.Enum<Style>
com.genologics.ri.stepconfiguration.Style
All Implemented Interfaces:
Serializable, Comparable<Style>, Constable

public enum Style extends Enum<Style>
Enumeration of field styles.
Since:
2.23
  • Enum Constant Details

    • USER_DEFINED

      public static final Style USER_DEFINED
      User-defined field style.
    • BUILT_IN

      public static final Style BUILT_IN
      Built-in field style.
  • Method Details

    • values

      public static Style[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Style valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • value

      public String value()
      Gets the value of this enum constant.
      Returns:
      The name of this enum constant.
    • fromValue

      public static Style fromValue(String v)
      Converts a string value to a Style enum constant.
      Parameters:
      v - The string value.
      Returns:
      The corresponding Style enum constant.