Enum Class Hex.Case

java.lang.Object
java.lang.Enum<Hex.Case>
dev.getelements.elements.sdk.util.Hex.Case
All Implemented Interfaces:
Serializable, Comparable<Hex.Case>, Constable
Enclosing class:
Hex

public static enum Hex.Case extends Enum<Hex.Case>
The case (upper or lower case).
  • Enum Constant Details

    • UPPER

      public static final Hex.Case UPPER
      Upper case.
    • LOWER

      public static final Hex.Case LOWER
      Lower case.
  • Method Details

    • values

      public static Hex.Case[] 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 Hex.Case 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