Uses of Class
gnu.bytecode.PrimType
-
Packages that use PrimType Package Description gnu.bytecode Contains classes to generate, read, write, and print Java bytecode in the form of.class
files.gnu.kawa.functions gnu.kawa.lispexpr -
-
Uses of PrimType in gnu.bytecode
Fields in gnu.bytecode declared as PrimType Modifier and Type Field Description static PrimType
Type. boolean_type
static PrimType
Type. booleanType
static PrimType
Type. byte_type
static PrimType
Type. byteType
static PrimType
Type. char_type
static PrimType
Type. charType
static PrimType
Type. double_type
static PrimType
Type. doubleType
static PrimType
Type. float_type
static PrimType
Type. floatType
static PrimType
Type. int_type
static PrimType
Type. intType
static PrimType
Type. long_type
static PrimType
Type. longType
static PrimType
Type. short_type
static PrimType
Type. shortType
static PrimType
Type. void_type
static PrimType
Type. voidType
Methods in gnu.bytecode that return PrimType Modifier and Type Method Description static PrimType
Type. signatureToPrimitive(char sig)
Returns the primitive type corresponding to a signature character.static PrimType
PrimType. unboxedType(Type type)
Methods in gnu.bytecode with parameters of type PrimType Modifier and Type Method Description static int
PrimType. compare(PrimType type1, PrimType type2)
void
CodeAttr. emitAdd(PrimType type)
void
CodeAttr. emitConvert(PrimType from, PrimType to)
void
CodeAttr. emitSub(PrimType type)
Constructors in gnu.bytecode with parameters of type PrimType Constructor Description PrimType(PrimType type)
-
Uses of PrimType in gnu.kawa.functions
Methods in gnu.kawa.functions with parameters of type PrimType Modifier and Type Method Description static Array
Arrays. makeFromSimple(int[] dimensions, int[] lowBounds, Object buffer, PrimType elementType)
-
Uses of PrimType in gnu.kawa.lispexpr
Subclasses of PrimType in gnu.kawa.lispexpr Modifier and Type Class Description class
LangPrimType
Use to implement some special types that convert differently.Fields in gnu.kawa.lispexpr declared as PrimType Modifier and Type Field Description static PrimType
LangPrimType. byteType
static PrimType
LangPrimType. doubleType
static PrimType
LangPrimType. floatType
static PrimType
LangPrimType. intType
static PrimType
LangPrimType. longType
static PrimType
LangPrimType. shortType
static PrimType
LangPrimType. voidType
Methods in gnu.kawa.lispexpr with parameters of type PrimType Modifier and Type Method Description static Object
LangPrimType. convertIntegerLiteral(IntNum ivalue, PrimType type, boolean nativeValue)
static Object
LispReader. readGeneralArray(LispReader in, int rank, PrimType elementType)
Constructors in gnu.kawa.lispexpr with parameters of type PrimType Constructor Description LangPrimType(PrimType type)
LangPrimType(PrimType type, Language language)
-