public static class TypeList.Generic.ForDetachedTypes extends TypeList.Generic.AbstractBase
Modifier and Type | Class and Description |
---|---|
static class |
TypeList.Generic.ForDetachedTypes.OfTypeVariables
A list of attached type variables represented by a list of type variable tokens.
|
static class |
TypeList.Generic.ForDetachedTypes.WithResolvedErasure
A list of detached types that are attached on reception but not when computing an erasure.
|
TypeList.Generic.AbstractBase, TypeList.Generic.Empty, TypeList.Generic.Explicit, TypeList.Generic.ForDetachedTypes, TypeList.Generic.ForLoadedTypes, TypeList.Generic.OfConstructorExceptionTypes, TypeList.Generic.OfLoadedInterfaceTypes, TypeList.Generic.OfMethodExceptionTypes
Modifier and Type | Field and Description |
---|---|
private java.util.List<? extends TypeDescription.Generic> |
detachedTypes
The detached types this list represents.
|
private TypeDescription.Generic.Visitor<? extends TypeDescription.Generic> |
visitor
The visitor to use for attaching the detached types.
|
Constructor and Description |
---|
ForDetachedTypes(java.util.List<? extends TypeDescription.Generic> detachedTypes,
TypeDescription.Generic.Visitor<? extends TypeDescription.Generic> visitor)
Creates a list of detached types that are attached on reception.
|
Modifier and Type | Method and Description |
---|---|
static TypeList.Generic |
attach(FieldDescription fieldDescription,
java.util.List<? extends TypeDescription.Generic> detachedTypes)
Creates a list of types that are attached to the provided field.
|
static TypeList.Generic |
attach(MethodDescription methodDescription,
java.util.List<? extends TypeDescription.Generic> detachedTypes)
Creates a list of types that are attached to the provided method.
|
static TypeList.Generic |
attach(ParameterDescription parameterDescription,
java.util.List<? extends TypeDescription.Generic> detachedTypes)
Creates a list of types that are attached to the provided parameter.
|
static TypeList.Generic |
attachVariables(MethodDescription methodDescription,
java.util.List<? extends TypeVariableToken> detachedTypeVariables)
Creates a list of type variables that are attached to the provided method.
|
static TypeList.Generic |
attachVariables(TypeDescription typeDescription,
java.util.List<? extends TypeVariableToken> detachedTypeVariables)
Creates a list of type variables that are attached to the provided type.
|
TypeDescription.Generic |
get(int index) |
int |
size() |
accept, asErasures, asRawTypes, asTokenList, getStackSize, wrap
filter, getOnly, subList
add, add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, set
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
filter, getOnly, subList
private final java.util.List<? extends TypeDescription.Generic> detachedTypes
private final TypeDescription.Generic.Visitor<? extends TypeDescription.Generic> visitor
public ForDetachedTypes(java.util.List<? extends TypeDescription.Generic> detachedTypes, TypeDescription.Generic.Visitor<? extends TypeDescription.Generic> visitor)
detachedTypes
- The detached types this list represents.visitor
- The visitor to use for attaching the detached types.public static TypeList.Generic attachVariables(TypeDescription typeDescription, java.util.List<? extends TypeVariableToken> detachedTypeVariables)
typeDescription
- The type to which the type variables are to be attached to.detachedTypeVariables
- A mapping of type variable symbols to their detached type variable bounds.public static TypeList.Generic attach(FieldDescription fieldDescription, java.util.List<? extends TypeDescription.Generic> detachedTypes)
fieldDescription
- The field to which the detached variables are attached to.detachedTypes
- The detached types.public static TypeList.Generic attach(MethodDescription methodDescription, java.util.List<? extends TypeDescription.Generic> detachedTypes)
methodDescription
- The method to which the detached variables are attached to.detachedTypes
- The detached types.public static TypeList.Generic attachVariables(MethodDescription methodDescription, java.util.List<? extends TypeVariableToken> detachedTypeVariables)
methodDescription
- The method to which the type variables are to be attached to.detachedTypeVariables
- A mapping of type variable symbols to their detached type variable bounds.public static TypeList.Generic attach(ParameterDescription parameterDescription, java.util.List<? extends TypeDescription.Generic> detachedTypes)
parameterDescription
- The parameter to which the detached variables are attached to.detachedTypes
- The detached types.public TypeDescription.Generic get(int index)
get
in interface java.util.List<TypeDescription.Generic>
get
in class java.util.AbstractList<TypeDescription.Generic>
public int size()
size
in interface java.util.Collection<TypeDescription.Generic>
size
in interface java.util.List<TypeDescription.Generic>
size
in class java.util.AbstractCollection<TypeDescription.Generic>