Available Methods
- T_SHORT
- T_BYTE
- T_LONG
- T_BOOLEAN
- T_INT
- T_CHAR
- T_DOUBLE
- T_ARRAY
- T_FLOAT
- T_VOID
- T_OBJECT
- ACC_INTERFACE
- INVOKESTATIC
- CONSTANT_Double ( )
- CONSTANT_Long ( )
- CONSTANT_InterfaceMethodref ( )
- CONSTANT_Class ( )
- T_ADDRESS
- CONSTANT_Methodref ( )
- CONSTANT_Integer ( )
- CONSTANT_String ( )
- T_REFERENCE
- PUTSTATIC
- JSR_W
- ISTORE
- CONSTANT_Utf8 ( )
- GETSTATIC
- MULTIANEWARRAY
- CONSTANT_Fieldref ( )
- ATTR_CONSTANT_VALUE
- ASTORE
- ATTR_SYNTHETIC
- ATTR_DEPRECATED
- IF_ACMPEQ
- CONSTANT_NameAndType ( )
- ICONST_0 ( )
- ILOAD
- ITEM_NewObject ( )
- INVOKEVIRTUAL
- OPCODE_NAMES
- CONSTANT_Float ( )
- ITEM_Object ( )
- NEW
- IFNULL
- FREM
- DRETURN
- INVOKEINTERFACE
- I2D ( )
- RETURN
- INVOKESPECIAL
- GETFIELD
- DSTORE
- L2D ( )
- F2I ( )
- PUTFIELD
- IFGT
- ATTR_STACK_MAP
- IINC
- ISTORE_0 ( )
- IRETURN
- IF_ICMPLT
- I2B ( )
- LNEG
- LALOAD
- DADD
- IFLE
- JSR
- ATTR_INNER_CLASSES
- LRETURN
- FSTORE
- LOR
- ATTR_PMG
- ANEWARRAY
- ACC_ABSTRACT
- LDIV
- IFLT
- IAND
- LSHR
- ALOAD
- IXOR
- FMUL
- IUSHR
- FADD
- IF_ICMPEQ
- LLOAD
- ISHR
- LREM
- IADD
- ISUB
- D2L ( )
- ARETURN
- ATHROW
- ATTRIBUTE_NAMES
- ATTR_LINE_NUMBER_TABLE
- IF_ICMPGT
- DCMPL
- DLOAD
- UNDEFINED
- FSUB
- DNEG
- FRETURN
- ACC_FINAL
- DUP_X1 ( )
- LMUL
- WIDE
- IF_ICMPGE
- CONSTANT_NAMES
- ATTR_CODE
- ALOAD_3 ( )
- DMUL
- IF_ICMPLE
- INEG
- FCMPL
- LSHL
- RET
- DREM
- I2S ( )
- FALOAD
- IFNONNULL
- NEWARRAY
- LSUB
- IOR
- LUSHR
- D2I ( )
- FDIV
- IDIV
- FLOAD
- LAND
- L2F ( )
- FNEG
- I2C ( )
- DSUB
- DUP
- IFGE
- L2I ( )
- ATTR_LOCAL_VARIABLE_TYPE_TABLE
- ACC_NATIVE
- MAX_ACC_FLAG
- I2L ( )
- F2L ( )
- LXOR
- IASTORE
- IF_ACMPNE
- ATTR_SOURCE_FILE
- LCONST_1 ( )
- ACC_SYNCHRONIZED
- ACC_PUBLIC
- LSTORE
- IFEQ
- IFNE
- ATTR_LOCAL_VARIABLE_TABLE
- ACC_SUPER
- ICONST_4 ( )
- AASTORE
- FCMPG
- TABLESWITCH
- F2D ( )
- ACC_STRICT
- FCONST_1 ( )
- CONSUME_STACK
- DUP2_X1 ( )
- MAX_BYTE
- ATTR_UNKNOWN
- AALOAD
- IMUL
- IF_ICMPNE
- POP2 ( )
- LASTORE
- MAX_SHORT
- ACC_PRIVATE
- FCONST_0 ( )
- LDC
- IREM
- DCONST_1 ( )
- ILOAD_0 ( )
- SALOAD
- DUP2_X2 ( )
- LDC2_W ( )
- ITEM_NAMES
- NO_OF_OPERANDS
- I2F ( )
- SASTORE
- SWAP
- KNOWN_ATTRIBUTES
- DCONST_0 ( )
- ATTR_EXCEPTIONS
- LCMP
- D2F ( )
- DALOAD
- DASTORE
- BASTORE
- ICONST_5 ( )
- ISHL
- CASTORE
- GOTO_W
- DDIV
- ITEM_Bogus ( )
- LOOKUPSWITCH
- PRODUCE_STACK
- T_UNKNOWN
- ARRAYLENGTH
- CALOAD
- ICONST_3 ( )
- MONITOREXIT
- SHORT_TYPE_NAMES
- POP
- ATTR_SIGNATURE
- ACC_STATIC
- ACC_PROTECTED
- DUP2 ( )
- IALOAD
- FCONST_2 ( )
- TYPE_OF_OPERANDS
- ACONST_NULL
- INSTANCEOF
- ICONST_M1 ( )
- CHECKCAST
- ICONST_1 ( )
- FASTORE
- LADD
- NOP
- MONITORENTER
- BALOAD
- ICONST_2 ( )
- LDC_W
Related Classes
- java.util.StringTokenizer
- com.sun.org.apache.bcel.internal.generic.TargetLostException
- com.sun.org.apache.bcel.internal.util.ByteSequence
- com.sun.org.apache.bcel.internal.generic.InstructionTargeter
- com.sun.org.apache.bcel.internal.generic.InstructionList
- com.sun.org.apache.bcel.internal.generic.Instruction
- com.sun.org.apache.bcel.internal.generic.GOTO
- com.sun.org.apache.bcel.internal.generic.BranchHandle
- com.sun.org.apache.bcel.internal.generic.InstructionHandle
- com.sun.org.apache.bcel.internal.generic.IfInstruction
- com.sun.org.apache.bcel.internal.generic.LocalVariableGen
- com.sun.org.apache.bcel.internal.Repository
Java Code Examples for com.sun.org.apache.bcel.internal.Constants#SHORT_TYPE_NAMES
The following examples show how to use
com.sun.org.apache.bcel.internal.Constants#SHORT_TYPE_NAMES .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: BasicType.java From jdk1.8-source-analysis with Apache License 2.0 | 5 votes |
/** * Constructor for basic types such as int, long, `void' * * @param type one of T_INT, T_BOOLEAN, ..., T_VOID * @see com.sun.org.apache.bcel.internal.Constants */ BasicType(byte type) { super(type, Constants.SHORT_TYPE_NAMES[type]); if((type < Constants.T_BOOLEAN) || (type > Constants.T_VOID)) throw new ClassGenException("Invalid type: " + type); }
Example 2
Source File: BasicType.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * Constructor for basic types such as int, long, `void' * * @param type one of T_INT, T_BOOLEAN, ..., T_VOID * @see com.sun.org.apache.bcel.internal.Constants */ BasicType(byte type) { super(type, Constants.SHORT_TYPE_NAMES[type]); if((type < Constants.T_BOOLEAN) || (type > Constants.T_VOID)) throw new ClassGenException("Invalid type: " + type); }
Example 3
Source File: BasicType.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
/** * Constructor for basic types such as int, long, `void' * * @param type one of T_INT, T_BOOLEAN, ..., T_VOID * @see com.sun.org.apache.bcel.internal.Constants */ BasicType(byte type) { super(type, Constants.SHORT_TYPE_NAMES[type]); if((type < Constants.T_BOOLEAN) || (type > Constants.T_VOID)) throw new ClassGenException("Invalid type: " + type); }
Example 4
Source File: BasicType.java From JDKSourceCode1.8 with MIT License | 5 votes |
/** * Constructor for basic types such as int, long, `void' * * @param type one of T_INT, T_BOOLEAN, ..., T_VOID * @see com.sun.org.apache.bcel.internal.Constants */ BasicType(byte type) { super(type, Constants.SHORT_TYPE_NAMES[type]); if((type < Constants.T_BOOLEAN) || (type > Constants.T_VOID)) throw new ClassGenException("Invalid type: " + type); }
Example 5
Source File: BasicType.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * Constructor for basic types such as int, long, `void' * * @param type one of T_INT, T_BOOLEAN, ..., T_VOID * @see com.sun.org.apache.bcel.internal.Constants */ BasicType(byte type) { super(type, Constants.SHORT_TYPE_NAMES[type]); if((type < Constants.T_BOOLEAN) || (type > Constants.T_VOID)) throw new ClassGenException("Invalid type: " + type); }
Example 6
Source File: BasicType.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
/** * Constructor for basic types such as int, long, `void' * * @param type one of T_INT, T_BOOLEAN, ..., T_VOID * @see com.sun.org.apache.bcel.internal.Constants */ BasicType(byte type) { super(type, Constants.SHORT_TYPE_NAMES[type]); if((type < Constants.T_BOOLEAN) || (type > Constants.T_VOID)) throw new ClassGenException("Invalid type: " + type); }
Example 7
Source File: BasicType.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * Constructor for basic types such as int, long, `void' * * @param type one of T_INT, T_BOOLEAN, ..., T_VOID * @see com.sun.org.apache.bcel.internal.Constants */ BasicType(byte type) { super(type, Constants.SHORT_TYPE_NAMES[type]); if((type < Constants.T_BOOLEAN) || (type > Constants.T_VOID)) throw new ClassGenException("Invalid type: " + type); }
Example 8
Source File: BasicType.java From hottub with GNU General Public License v2.0 | 5 votes |
/** * Constructor for basic types such as int, long, `void' * * @param type one of T_INT, T_BOOLEAN, ..., T_VOID * @see com.sun.org.apache.bcel.internal.Constants */ BasicType(byte type) { super(type, Constants.SHORT_TYPE_NAMES[type]); if((type < Constants.T_BOOLEAN) || (type > Constants.T_VOID)) throw new ClassGenException("Invalid type: " + type); }
Example 9
Source File: BasicType.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
/** * Constructor for basic types such as int, long, `void' * * @param type one of T_INT, T_BOOLEAN, ..., T_VOID * @see com.sun.org.apache.bcel.internal.Constants */ BasicType(byte type) { super(type, Constants.SHORT_TYPE_NAMES[type]); if((type < Constants.T_BOOLEAN) || (type > Constants.T_VOID)) throw new ClassGenException("Invalid type: " + type); }
Example 10
Source File: BasicType.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
/** * Constructor for basic types such as int, long, `void' * * @param type one of T_INT, T_BOOLEAN, ..., T_VOID * @see com.sun.org.apache.bcel.internal.Constants */ BasicType(byte type) { super(type, Constants.SHORT_TYPE_NAMES[type]); if((type < Constants.T_BOOLEAN) || (type > Constants.T_VOID)) throw new ClassGenException("Invalid type: " + type); }