Uses of Class
gnu.bytecode.PrimType

Packages that use PrimType
gnu.bytecode Contains classes to generate, read, write, and print Java bytecode (.class) files. 
gnu.kawa.lispexpr   
 

Uses of PrimType in gnu.bytecode
 

Fields in gnu.bytecode declared as PrimType
static PrimType Type.boolean_type
           
static PrimType Type.byte_type
           
static PrimType Type.char_type
           
static PrimType Type.double_type
           
static PrimType Type.float_type
           
static PrimType Type.int_type
           
static PrimType Type.long_type
           
static PrimType Type.neverReturnsType
          The "return type" of an expression that never returns, such as a throw.
static PrimType Type.short_type
           
static PrimType Type.void_type
           
 

Methods in gnu.bytecode that return PrimType
static PrimType Type.signatureToPrimitive(char sig)
          Returns the primitive type corresponding to a signature character.
 

Methods in gnu.bytecode with parameters of type PrimType
static int PrimType.compare(PrimType type1, PrimType type2)
           
 void CodeAttr.emitAdd(PrimType type)
           
 void CodeAttr.emitSub(PrimType type)
           
 

Constructors in gnu.bytecode with parameters of type PrimType
PrimType(PrimType type)
           
 

Uses of PrimType in gnu.kawa.lispexpr
 

Subclasses of PrimType in gnu.kawa.lispexpr
 class LangPrimType
          Use to implement some special types that convert differently.
 

Constructors in gnu.kawa.lispexpr with parameters of type PrimType
LangPrimType(PrimType type)
           
LangPrimType(PrimType type, Language language)