Uses of Class
net.bytebuddy.description.type.TypeDefinition.Sort
-
Packages that use TypeDefinition.Sort Package Description net.bytebuddy.description.type Contains descriptions of Java types and packages.net.bytebuddy.matcher Contains an API for matching Java byte code entities. -
-
Uses of TypeDefinition.Sort in net.bytebuddy.description.type
Methods in net.bytebuddy.description.type that return TypeDefinition.Sort Modifier and Type Method Description TypeDefinition.Sort
TypeDefinition. getSort()
Returns the sort of the generic type this instance represents.TypeDefinition.Sort
TypeDescription.AbstractBase. getSort()
Returns the sort of the generic type this instance represents.TypeDefinition.Sort
TypeDescription.Generic.LazyProjection. getSort()
Returns the sort of the generic type this instance represents.TypeDefinition.Sort
TypeDescription.Generic.OfGenericArray. getSort()
Returns the sort of the generic type this instance represents.TypeDefinition.Sort
TypeDescription.Generic.OfNonGenericType. getSort()
Returns the sort of the generic type this instance represents.TypeDefinition.Sort
TypeDescription.Generic.OfParameterizedType. getSort()
Returns the sort of the generic type this instance represents.TypeDefinition.Sort
TypeDescription.Generic.OfTypeVariable. getSort()
Returns the sort of the generic type this instance represents.TypeDefinition.Sort
TypeDescription.Generic.OfTypeVariable.Symbolic. getSort()
Returns the sort of the generic type this instance represents.TypeDefinition.Sort
TypeDescription.Generic.OfWildcardType. getSort()
Returns the sort of the generic type this instance represents.static TypeDefinition.Sort
TypeDefinition.Sort. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TypeDefinition.Sort[]
TypeDefinition.Sort. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of TypeDefinition.Sort in net.bytebuddy.matcher
Fields in net.bytebuddy.matcher with type parameters of type TypeDefinition.Sort Modifier and Type Field Description private ElementMatcher<? super TypeDefinition.Sort>
TypeSortMatcher. matcher
An element matcher to be applied to the type's sort.Methods in net.bytebuddy.matcher with parameters of type TypeDefinition.Sort Modifier and Type Method Description static <T extends TypeDefinition>
ElementMatcher.Junction<T>ElementMatchers. ofSort(TypeDefinition.Sort sort)
Matches generic type descriptions of the given sort.Method parameters in net.bytebuddy.matcher with type arguments of type TypeDefinition.Sort Modifier and Type Method Description static <T extends TypeDefinition>
ElementMatcher.Junction<T>ElementMatchers. ofSort(ElementMatcher<? super TypeDefinition.Sort> matcher)
Matches generic type descriptions of the given sort.Constructor parameters in net.bytebuddy.matcher with type arguments of type TypeDefinition.Sort Constructor Description TypeSortMatcher(ElementMatcher<? super TypeDefinition.Sort> matcher)
Creates a new type sort matcher.
-