Class TypeKindVisitorPreview<R,P>
java.lang.Object
javax.lang.model.util.AbstractTypeVisitor6<R,P>
javax.lang.model.util.SimpleTypeVisitor6<R,P>
javax.lang.model.util.TypeKindVisitor6<R,P>
javax.lang.model.util.TypeKindVisitor7<R,P>
javax.lang.model.util.TypeKindVisitor8<R,P>
javax.lang.model.util.TypeKindVisitor9<R,P>
javax.lang.model.util.TypeKindVisitor14<R,P>
javax.lang.model.util.TypeKindVisitorPreview<R,P>
- Type Parameters:
R- the return type of this visitor's methods. UseVoidfor visitors that do not need to return results.P- the type of the additional parameter to this visitor's methods. UseVoidfor visitors that do not need an additional parameter.
- All Implemented Interfaces:
TypeVisitor<R,P>
@SupportedSourceVersion(RELEASE_26)
public class TypeKindVisitorPreview<R,P>
extends TypeKindVisitor14<R,P>
TypeKindVisitorPreview is a reflective preview API of the Java platform.
Preview features may be removed in a future release, or upgraded to permanent features of the Java platform.
A visitor of types based on their kind with
default behavior appropriate for a preview source version.
For types
Xyz that may have more than one
kind, the visitXyz methods in this class delegate
to the visitXyzAsKind method corresponding to the
first argument's kind. The visitXyzAsKind methods
call defaultAction, passing their arguments
to defaultAction's corresponding parameters.- API Note:
- Methods in this class may be overridden subject to their general contract.
- Since:
- 23
- See Also:
-
Field Summary
Fields declared in class SimpleTypeVisitor6
DEFAULT_VALUEModifier and TypeFieldDescriptionprotected final RDefault value to be returned;defaultActionreturns this value unless the method is overridden. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedConstructor for concrete subclasses to call; usesnullfor the default value.protectedTypeKindVisitorPreview(R defaultValue) Constructor for concrete subclasses to call; uses the argument for the default value. -
Method Summary
Methods declared in class TypeKindVisitor9
visitNoTypeAsModuleModifier and TypeMethodDescriptionvisitNoTypeAsModule(NoType t, P p) Visits aMODULEpseudo-type.Methods declared in class TypeKindVisitor8
visitIntersectionModifier and TypeMethodDescriptionVisits an intersection type.Methods declared in class TypeKindVisitor7
visitUnionMethods declared in class TypeKindVisitor6
visitNoType, visitNoTypeAsNone, visitNoTypeAsPackage, visitNoTypeAsVoid, visitPrimitive, visitPrimitiveAsBoolean, visitPrimitiveAsByte, visitPrimitiveAsChar, visitPrimitiveAsDouble, visitPrimitiveAsFloat, visitPrimitiveAsInt, visitPrimitiveAsLong, visitPrimitiveAsShortModifier and TypeMethodDescriptionvisitNoType(NoType t, P p) Visits aNoTypeinstance.visitNoTypeAsNone(NoType t, P p) Visits aNONEpseudo-type.visitNoTypeAsPackage(NoType t, P p) Visits aPACKAGEpseudo-type.visitNoTypeAsVoid(NoType t, P p) Visits aVOIDpseudo-type.visitPrimitive(PrimitiveType t, P p) Visits a primitive type.Visits aBOOLEANprimitive type.Visits aBYTEprimitive type.Visits aCHARprimitive type.Visits aDOUBLEprimitive type.Visits aFLOATprimitive type.Visits anINTprimitive type.Visits aLONGprimitive type.Visits aSHORTprimitive type.Methods declared in class SimpleTypeVisitor6
defaultAction, visitArray, visitDeclared, visitError, visitExecutable, visitNull, visitTypeVariable, visitWildcardModifier and TypeMethodDescriptionprotected RdefaultAction(TypeMirror t, P p) The default action for visit methods.visitArray(ArrayType t, P p) Visits an array type.visitDeclared(DeclaredType t, P p) Visits a declared type.visitError(ErrorType t, P p) Visits an error type.visitExecutable(ExecutableType t, P p) Visits an executable type.Visits the null type.visitTypeVariable(TypeVariable t, P p) Visits a type variable.visitWildcard(WildcardType t, P p) Visits a wildcard type.Methods declared in class AbstractTypeVisitor6
visit, visit, visitUnknownModifier and TypeMethodDescriptionfinal Rvisit(TypeMirror t) Visits any type mirror as if by passing itself to that type mirror'sacceptmethod and passingnullfor the additional parameter.final Rvisit(TypeMirror t, P p) Visits any type mirror as if by passing itself to that type mirror'sacceptmethod.visitUnknown(TypeMirror t, P p) Visits an unknown kind of type.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
TypeKindVisitorPreview
protected TypeKindVisitorPreview()Constructor for concrete subclasses to call; usesnullfor the default value. -
TypeKindVisitorPreview
Constructor for concrete subclasses to call; uses the argument for the default value.- Parameters:
defaultValue- the value to assign toSimpleTypeVisitor6.DEFAULT_VALUE
-