Enum Class RawPacketDisplayMode

java.lang.Object
java.lang.Enum<RawPacketDisplayMode>
org.ka2ddo.yaac.gui.RawPacketDisplayMode
All Implemented Interfaces:
Serializable, Comparable<RawPacketDisplayMode>, Constable

public enum RawPacketDisplayMode extends Enum<RawPacketDisplayMode>
This enum defines a display mode for tabular packet display.
Author:
Andrew Pavlin, KA2DDO
  • Enum Constant Details

    • RAW_TEXT

      public static final RawPacketDisplayMode RAW_TEXT
      Display packet body as if it was UTF-8 encoded text.
    • RAW_HEX

      public static final RawPacketDisplayMode RAW_HEX
      Display packet body as a sequence of hexadecimal-encoded bytes.
    • LVL3_PROTOCOL

      public static final RawPacketDisplayMode LVL3_PROTOCOL
      Display packet body as decoded Level 3 meanings.
  • Method Details

    • values

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