Enum Class HexRecordType

java.lang.Object
java.lang.Enum<HexRecordType>
be.lmenten.avr.binfmt.hex.HexRecordType
All Implemented Interfaces:
Serializable, Comparable<HexRecordType>, Constable

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

    • DATA

      public static final HexRecordType DATA
    • EOF

      public static final HexRecordType EOF
    • EXTENDED_SEGMENT_ADDRESS

      public static final HexRecordType EXTENDED_SEGMENT_ADDRESS
    • START_SEGMENT_ADDRESS

      public static final HexRecordType START_SEGMENT_ADDRESS
    • EXTENDED_LINEAR_ADDRESS

      public static final HexRecordType EXTENDED_LINEAR_ADDRESS
    • START_LINEAR_ADDRESS

      public static final HexRecordType START_LINEAR_ADDRESS
  • Method Details

    • values

      public static HexRecordType[] 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 HexRecordType 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
    • lookup

      public static HexRecordType lookup(int code)