Class ArrayTypeSignature
- java.lang.Object
-
- com.strobel.assembler.metadata.signatures.ArrayTypeSignature
-
- All Implemented Interfaces:
BaseType
,FieldTypeSignature
,ReturnType
,Tree
,TypeArgument
,TypeSignature
,TypeTree
public final class ArrayTypeSignature extends java.lang.Object implements FieldTypeSignature
-
-
Field Summary
Fields Modifier and Type Field Description private TypeSignature
_componentType
-
Constructor Summary
Constructors Modifier Constructor Description private
ArrayTypeSignature(TypeSignature componentType)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(TypeTreeVisitor<?> v)
TypeSignature
getComponentType()
static ArrayTypeSignature
make(TypeSignature ct)
-
-
-
Field Detail
-
_componentType
private final TypeSignature _componentType
-
-
Constructor Detail
-
ArrayTypeSignature
private ArrayTypeSignature(TypeSignature componentType)
-
-
Method Detail
-
make
public static ArrayTypeSignature make(TypeSignature ct)
-
getComponentType
public TypeSignature getComponentType()
-
accept
public void accept(TypeTreeVisitor<?> v)
-
-