Uses of Enum
net.bytebuddy.description.type.TypeDefinition.Sort
Packages that use TypeDefinition.Sort
Package
Description
Contains descriptions of Java types and packages.
Contains an API for matching Java byte code entities.
-
Uses of TypeDefinition.Sort in net.bytebuddy.description.type
Subclasses with type arguments of type TypeDefinition.Sort in net.bytebuddy.description.typeMethods in net.bytebuddy.description.type that return TypeDefinition.SortModifier and TypeMethodDescriptionTypeDefinition.getSort()Returns the sort of the generic type this instance represents.TypeDescription.AbstractBase.getSort()Returns the sort of the generic type this instance represents.TypeDescription.Generic.LazyProjection.getSort()Returns the sort of the generic type this instance represents.TypeDescription.Generic.OfGenericArray.getSort()Returns the sort of the generic type this instance represents.TypeDescription.Generic.OfNonGenericType.getSort()Returns the sort of the generic type this instance represents.TypeDescription.Generic.OfParameterizedType.getSort()Returns the sort of the generic type this instance represents.TypeDescription.Generic.OfTypeVariable.getSort()Returns the sort of the generic type this instance represents.TypeDescription.Generic.OfTypeVariable.Symbolic.getSort()Returns the sort of the generic type this instance represents.TypeDescription.Generic.OfWildcardType.getSort()Returns the sort of the generic type this instance represents.static TypeDefinition.SortReturns 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.SortModifier and TypeFieldDescriptionprivate final ElementMatcher<? super TypeDefinition.Sort> TypeSortMatcher.matcherAn element matcher to be applied to the type's sort.Methods in net.bytebuddy.matcher with parameters of type TypeDefinition.SortModifier and TypeMethodDescriptionstatic <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.SortModifier and TypeMethodDescriptionstatic <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.SortModifierConstructorDescriptionTypeSortMatcher(ElementMatcher<? super TypeDefinition.Sort> matcher) Creates a new type sort matcher.