Enum Class AsciiCharacter

java.lang.Object
java.lang.Enum<AsciiCharacter>
dev.blaauwendraad.masker.AsciiCharacter
All Implemented Interfaces:
Serializable, Comparable<AsciiCharacter>, Constable

public enum AsciiCharacter extends Enum<AsciiCharacter>
  • Enum Constant Details

  • Method Details

    • values

      public static AsciiCharacter[] 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 AsciiCharacter 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
    • toAsciiByteValue

      public static byte toAsciiByteValue(int digit)
    • isDoubleQuote

      public static boolean isDoubleQuote(byte inputByte)
    • isEscapeCharacter

      public static boolean isEscapeCharacter(byte inputByte)
    • isLowercaseU

      public static boolean isLowercaseU(byte inputByte)
    • isColon

      public static boolean isColon(byte inputByte)
    • getAsciiByteValue

      public byte getAsciiByteValue()