public final enum

TypeCategory

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.pnfsoftware.jeb.core.units.code.asm.type.TypeCategory

Class Overview

Categories for native types.

Summary

Enum Values
TypeCategory  COMPLEX  Complex number type, usually a built-in type aggregating two floating-points. 
TypeCategory  COMPOSITE  Composite type, such as an array or a structure or union. 
TypeCategory  FLOAT  Floating point type (IEEE-754). 
TypeCategory  INTEGRAL  Integral type (2-complement integer, signed or unsigned). 
TypeCategory  POINTER  Pointer type. 
TypeCategory  VECTOR  Vector type. 
TypeCategory  VOID  The pseudo-category used by the void (none) type. 
Public Methods
static TypeCategory valueOf(String name)
final static TypeCategory[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final TypeCategory COMPLEX

Complex number type, usually a built-in type aggregating two floating-points.

public static final TypeCategory COMPOSITE

Composite type, such as an array or a structure or union.

public static final TypeCategory FLOAT

Floating point type (IEEE-754).

public static final TypeCategory INTEGRAL

Integral type (2-complement integer, signed or unsigned).

public static final TypeCategory POINTER

Pointer type.

public static final TypeCategory VECTOR

Vector type.

public static final TypeCategory VOID

The pseudo-category used by the void (none) type.

Public Methods

public static TypeCategory valueOf (String name)

public static final TypeCategory[] values ()