Uses of Interface
org.codehaus.janino.util.signature.SignatureParser.TypeSignature
-
Packages that use SignatureParser.TypeSignature Package Description org.codehaus.janino.util.signature Application-independent helper classes. -
-
Uses of SignatureParser.TypeSignature in org.codehaus.janino.util.signature
Subinterfaces of SignatureParser.TypeSignature in org.codehaus.janino.util.signature Modifier and Type Interface Description static interface
SignatureParser.FieldTypeSignature
Representation of the "FieldTypeSignature" clause.Classes in org.codehaus.janino.util.signature that implement SignatureParser.TypeSignature Modifier and Type Class Description static class
SignatureParser.ArrayTypeSignature
Representation of the "ArrayTypeSignature" clause.static class
SignatureParser.ClassTypeSignature
Representation of the "ClassTypeSignature" clause, e.g.static class
SignatureParser.PrimitiveTypeSignature
Representation of the "PrimitiveTypeSignature" clause, i.e.static class
SignatureParser.TypeVariableSignature
Representation of the "TypeVariableSignature" clause, e.g.Fields in org.codehaus.janino.util.signature declared as SignatureParser.TypeSignature Modifier and Type Field Description SignatureParser.TypeSignature
SignatureParser.ArrayTypeSignature. componentTypeSignature
The type of the array components.SignatureParser.TypeSignature
SignatureParser.MethodTypeSignature. returnType
The return type of the method.static SignatureParser.TypeSignature
SignatureParser. VOID
Representation of the 'void' type.Fields in org.codehaus.janino.util.signature with type parameters of type SignatureParser.TypeSignature Modifier and Type Field Description java.util.List<SignatureParser.TypeSignature>
SignatureParser.MethodTypeSignature. parameterTypes
The types of the method's parameters.Methods in org.codehaus.janino.util.signature that return SignatureParser.TypeSignature Modifier and Type Method Description private SignatureParser.TypeSignature
SignatureParser. decodeClassName(java.lang.String internalName)
SignatureParser.TypeSignature
SignatureParser. decodeClassNameOrFieldDescriptor(java.lang.String s)
Decodes a "class-name-or-field-descriptor" as defined in JLS8 4.4.1 ("name_index").SignatureParser.TypeSignature
SignatureParser. decodeFieldDescriptor(java.lang.String s)
Decodes a 'field descriptor' as defined in JLS7 4.3.2.SignatureParser.TypeSignature
SignatureParser. decodeReturnType(java.lang.String s)
Decodes a 'return type' as defined in JVMS7 4.3.4 / JVMS8 4.7.9.1.SignatureParser.TypeSignature
SignatureParser. decodeTypeSignature(java.lang.String s)
Decodes a 'type signature' as defined in JVMS7 4.3.4 / JVMS8 4.7.9.1.private SignatureParser.TypeSignature
SignatureParser. parseFieldDescriptor(StringCharStream scs)
private SignatureParser.TypeSignature
SignatureParser. parseReturnType(StringCharStream scs)
private SignatureParser.TypeSignature
SignatureParser. parseTypeSignature(StringCharStream scs)
Constructors in org.codehaus.janino.util.signature with parameters of type SignatureParser.TypeSignature Constructor Description ArrayTypeSignature(SignatureParser.TypeSignature componentTypeSignature)
MethodTypeSignature(java.util.List<SignatureParser.FormalTypeParameter> formalTypeParameters, java.util.List<SignatureParser.TypeSignature> parameterTypes, SignatureParser.TypeSignature returnType, java.util.List<SignatureParser.ThrowsSignature> thrownTypes)
-