Enum Class PrimitiveCategory

java.lang.Object
java.lang.Enum<PrimitiveCategory>
com.pnfsoftware.jeb.core.units.code.asm.type.PrimitiveCategory
All Implemented Interfaces:
Serializable, Comparable<PrimitiveCategory>, Constable

@Ser public enum PrimitiveCategory extends Enum<PrimitiveCategory>
Primitive type category (encoding).
  • Enum Constant Details

    • VOID

      public static final PrimitiveCategory VOID
      The pseudo-category used by the void (none) type.
    • UNSIGNED

      public static final PrimitiveCategory UNSIGNED
      Unsigned integer value, also used for built-in pointer types.
    • INTEGER

      public static final PrimitiveCategory INTEGER
      Signed 2-complement integer.
    • FLOAT

      public static final PrimitiveCategory FLOAT
      IEEE-754 floating point primitive.
    • COMPLEX

      public static final PrimitiveCategory COMPLEX
      DO NOT USE.

      Complex numbers (real+imaginary) primitive.

  • Method Details

    • values

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