Enum Class ListStyle

java.lang.Object
java.lang.Enum<ListStyle>
adalid.core.enums.ListStyle
All Implemented Interfaces:
Serializable, Comparable<ListStyle>, Constable

public enum ListStyle extends Enum<ListStyle>
Author:
Jorge Campins
  • Enum Constant Details

    • UNSPECIFIED

      public static final ListStyle UNSPECIFIED
    • CHARACTER_KEY

      public static final ListStyle CHARACTER_KEY
    • NAME

      public static final ListStyle NAME
    • CHARACTER_KEY_AND_NAME

      public static final ListStyle CHARACTER_KEY_AND_NAME
    • NAME_AND_CHARACTER_KEY

      public static final ListStyle NAME_AND_CHARACTER_KEY
    • PRIMARY_KEY_AND_CHARACTER_KEY

      public static final ListStyle PRIMARY_KEY_AND_CHARACTER_KEY
    • PRIMARY_KEY_AND_NAME

      public static final ListStyle PRIMARY_KEY_AND_NAME
  • Method Details

    • values

      public static ListStyle[] 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 ListStyle 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