Uses of Class
org.jboss.classfilewriter.constpool.ConstPool
-
Packages that use ConstPool Package Description org.jboss.classfilewriter org.jboss.classfilewriter.annotations org.jboss.classfilewriter.attributes org.jboss.classfilewriter.code -
-
Uses of ConstPool in org.jboss.classfilewriter
Fields in org.jboss.classfilewriter declared as ConstPool Modifier and Type Field Description private ConstPool
ClassFile. constPool
Methods in org.jboss.classfilewriter that return ConstPool Modifier and Type Method Description ConstPool
ClassFile. getConstPool()
Constructors in org.jboss.classfilewriter with parameters of type ConstPool Constructor Description ClassField(short accessFlags, java.lang.String name, java.lang.String descriptor, ClassFile classFile, ConstPool constPool)
-
Uses of ConstPool in org.jboss.classfilewriter.annotations
Methods in org.jboss.classfilewriter.annotations with parameters of type ConstPool Modifier and Type Method Description static ClassAnnotation
AnnotationBuilder. createAnnotation(ConstPool constPool, java.lang.annotation.Annotation annotation)
static AnnotationValue
AnnotationBuilder. createValue(ConstPool constPool, java.lang.String name, java.lang.Object value)
Constructors in org.jboss.classfilewriter.annotations with parameters of type ConstPool Constructor Description AnnotationAnnotationValue(ConstPool constPool, java.lang.String name, ClassAnnotation value)
AnnotationsAttribute(AnnotationsAttribute.Type type, ConstPool constPool)
AnnotationValue(ConstPool constPool, java.lang.String name)
ArrayAnnotationValue(ConstPool constPool, java.lang.String name, java.util.List<AnnotationValue> value)
BooleanAnnotationValue(ConstPool constPool, java.lang.String name, boolean value)
ByteAnnotationValue(ConstPool constPool, java.lang.String name, byte value)
CharAnnotationValue(ConstPool constPool, java.lang.String name, char value)
ClassAnnotation(ConstPool constPool, java.lang.String type, java.util.List<AnnotationValue> annotationValues)
ClassAnnotationValue(ConstPool constPool, java.lang.String name, java.lang.Class<?> value)
ClassAnnotationValue(ConstPool constPool, java.lang.String name, java.lang.String descriptor)
DoubleAnnotationValue(ConstPool constPool, java.lang.String name, double value)
EnumAnnotationValue(ConstPool constPool, java.lang.String name, java.lang.Enum<?> value)
EnumAnnotationValue(ConstPool constPool, java.lang.String name, java.lang.String enumType, java.lang.String enumValue)
FloatAnnotationValue(ConstPool constPool, java.lang.String name, float value)
IntAnnotationValue(ConstPool constPool, java.lang.String name, int value)
LongAnnotationValue(ConstPool constPool, java.lang.String name, long value)
ParameterAnnotationsAttribute(ParameterAnnotationsAttribute.Type type, ConstPool constPool, int noParameters)
ShortAnnotationValue(ConstPool constPool, java.lang.String name, short value)
StringAnnotationValue(ConstPool constPool, java.lang.String name, java.lang.String value)
-
Uses of ConstPool in org.jboss.classfilewriter.attributes
Fields in org.jboss.classfilewriter.attributes declared as ConstPool Modifier and Type Field Description protected ConstPool
Attribute. constPool
private ConstPool
ExceptionsAttribute. constPool
Constructors in org.jboss.classfilewriter.attributes with parameters of type ConstPool Constructor Description Attribute(java.lang.String name, ConstPool constPool)
ExceptionsAttribute(ConstPool constPool)
SignatureAttribute(ConstPool constPool, java.lang.String signature)
StackMapTableAttribute(ClassMethod classMethod, ConstPool constPool)
-
Uses of ConstPool in org.jboss.classfilewriter.code
Fields in org.jboss.classfilewriter.code declared as ConstPool Modifier and Type Field Description private ConstPool
CodeAttribute. constPool
private ConstPool
LocalVariableState. constPool
private ConstPool
StackState. constPool
Methods in org.jboss.classfilewriter.code that return ConstPool Modifier and Type Method Description ConstPool
CodeAttribute. getConstPool()
Methods in org.jboss.classfilewriter.code with parameters of type ConstPool Modifier and Type Method Description static StackEntry
StackEntry. of(java.lang.String descriptor, ConstPool pool)
Constructors in org.jboss.classfilewriter.code with parameters of type ConstPool Constructor Description CodeAttribute(ClassMethod method, ConstPool constPool)
LocalVariableState(java.util.List<StackEntry> contents, ConstPool constPool)
LocalVariableState(ConstPool pool, java.lang.String... entries)
StackEntry(StackEntryType type, java.lang.String descriptor, ConstPool pool)
StackState(java.lang.String exceptionType, ConstPool constPool)
StackState(java.util.List<StackEntry> contents, ConstPool constPool)
StackState(ConstPool constPool)
-