Enum Class TypeCategory

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

@Ser public enum TypeCategory extends Enum<TypeCategory>
Categories for native types.
  • Enum Constant Details

    • VOID

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

      public static final TypeCategory POINTER
      Pointer type.
    • INTEGRAL

      public static final TypeCategory INTEGRAL
      Integral type (2-complement integer, signed or unsigned).
    • FLOAT

      public static final TypeCategory FLOAT
      Floating point type (IEEE-754).
    • COMPLEX

      public static final TypeCategory COMPLEX
      Complex number type, usually a built-in type aggregating two floating-points.
    • VECTOR

      public static final TypeCategory VECTOR
      Vector type.
    • COMPOSITE

      public static final TypeCategory COMPOSITE
      Composite type, such as an array or a structure or union.
  • Method Details

    • values

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