Uses of Class
com.squareup.javapoet.TypeVariableName
-
-
Uses of TypeVariableName in com.squareup.javapoet
Fields in com.squareup.javapoet with type parameters of type TypeVariableName Modifier and Type Field Description List<TypeVariableName>
MethodSpec. typeVariables
List<TypeVariableName>
TypeSpec. typeVariables
Methods in com.squareup.javapoet that return TypeVariableName Modifier and Type Method Description TypeVariableName
TypeVariableName. annotated(List<AnnotationSpec> annotations)
static TypeVariableName
TypeVariableName. get(TypeVariable<?> type)
Returns type variable equivalent totype
.static TypeVariableName
TypeVariableName. get(String name)
Returns type variable namedname
without bounds.static TypeVariableName
TypeVariableName. get(String name, TypeName... bounds)
Returns type variable namedname
withbounds
.static TypeVariableName
TypeVariableName. get(String name, Type... bounds)
Returns type variable namedname
withbounds
.static TypeVariableName
TypeVariableName. get(TypeParameterElement element)
Returns type variable equivalent toelement
.static TypeVariableName
TypeVariableName. get(TypeVariable mirror)
Returns type variable equivalent tomirror
.TypeVariableName
TypeVariableName. withBounds(TypeName... bounds)
TypeVariableName
TypeVariableName. withBounds(Type... bounds)
TypeVariableName
TypeVariableName. withBounds(List<TypeName> bounds)
Methods in com.squareup.javapoet with parameters of type TypeVariableName Modifier and Type Method Description MethodSpec.Builder
MethodSpec.Builder. addTypeVariable(TypeVariableName typeVariable)
TypeSpec.Builder
TypeSpec.Builder. addTypeVariable(TypeVariableName typeVariable)
Method parameters in com.squareup.javapoet with type arguments of type TypeVariableName Modifier and Type Method Description MethodSpec.Builder
MethodSpec.Builder. addTypeVariables(Iterable<TypeVariableName> typeVariables)
TypeSpec.Builder
TypeSpec.Builder. addTypeVariables(Iterable<TypeVariableName> typeVariables)
-