Class TypeKindVisitor9<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>
- 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>
- Direct Known Subclasses:
TypeKindVisitor14
@SupportedSourceVersion(RELEASE_14)
public class TypeKindVisitor9<R,P>
extends TypeKindVisitor8<R,P>
A visitor of types based on their kind with
default behavior appropriate for source versions
RELEASE_9 through RELEASE_14.
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:
- 9
- 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.protectedTypeKindVisitor9(R defaultValue) Constructor for concrete subclasses to call; uses the argument for the default value. -
Method Summary
Modifier 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
-
TypeKindVisitor9
protected TypeKindVisitor9()Constructor for concrete subclasses to call; usesnullfor the default value. -
TypeKindVisitor9
Constructor for concrete subclasses to call; uses the argument for the default value.- Parameters:
defaultValue- the value to assign toSimpleTypeVisitor6.DEFAULT_VALUE
-
-
Method Details
-
visitNoTypeAsModule
Visits aMODULEpseudo-type.- Overrides:
visitNoTypeAsModulein classTypeKindVisitor6<R,P> - Implementation Requirements:
- This implementation calls
defaultAction. - Parameters:
t- the type to visitp- a visitor-specified parameter- Returns:
- the result of
defaultAction - Since:
- 10
-