Enum Ascii

java.lang.Object
java.lang.Enum<Ascii>
io.datarouter.bytes.Ascii
All Implemented Interfaces:
Serializable, Comparable<Ascii>, java.lang.constant.Constable

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

    • NULL

      public static final Ascii NULL
    • START_OF_HEADER

      public static final Ascii START_OF_HEADER
    • START_OF_TEXT

      public static final Ascii START_OF_TEXT
    • END_OF_TEXT

      public static final Ascii END_OF_TEXT
    • END_OF_TRANSMISSION

      public static final Ascii END_OF_TRANSMISSION
    • ENQUIRY

      public static final Ascii ENQUIRY
    • ACKNOWLEDGE

      public static final Ascii ACKNOWLEDGE
    • BELL

      public static final Ascii BELL
    • BACKSPACE

      public static final Ascii BACKSPACE
    • HORIZONTAL_TAB

      public static final Ascii HORIZONTAL_TAB
    • LINE_FEED

      public static final Ascii LINE_FEED
    • VERTICAL_TAB

      public static final Ascii VERTICAL_TAB
    • FORM_FEED

      public static final Ascii FORM_FEED
    • CARRIAGE_RETURN

      public static final Ascii CARRIAGE_RETURN
    • SHIFT_OUT

      public static final Ascii SHIFT_OUT
    • SHIFT_IN

      public static final Ascii SHIFT_IN
    • DEVICE_CONTROL_1

      public static final Ascii DEVICE_CONTROL_1
    • DEVICE_CONTROL_2

      public static final Ascii DEVICE_CONTROL_2
    • DEVICE_CONTROL_3

      public static final Ascii DEVICE_CONTROL_3
    • DEVICE_CONTROL_4

      public static final Ascii DEVICE_CONTROL_4
    • NEGATIVE_ACKNOWLEDGE

      public static final Ascii NEGATIVE_ACKNOWLEDGE
    • SYNCHRONOUS_IDLE

      public static final Ascii SYNCHRONOUS_IDLE
    • END_OF_TRANS_BLOCK

      public static final Ascii END_OF_TRANS_BLOCK
    • CANCEL

      public static final Ascii CANCEL
    • END_OF_MEDIUM

      public static final Ascii END_OF_MEDIUM
    • SUBSTITUTE

      public static final Ascii SUBSTITUTE
    • ESCAPE

      public static final Ascii ESCAPE
    • FULL_SEPARATOR

      public static final Ascii FULL_SEPARATOR
    • GROUP_SEPARATOR

      public static final Ascii GROUP_SEPARATOR
    • RECORD_SEPARATOR

      public static final Ascii RECORD_SEPARATOR
    • UNIT_SEPARATOR

      public static final Ascii UNIT_SEPARATOR
    • COMMA

      public static final Ascii COMMA
    • ZERO

      public static final Ascii ZERO
  • Field Details

    • code

      public final byte code
  • Method Details

    • values

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

      public static Ascii valueOf​(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null