- Type Parameters:
- R- the return type of this visitor's methods. Use- Voidfor visitors that do not need to return results.
- P- the type of the additional parameter to this visitor's methods. Use- Voidfor visitors that do not need an additional parameter.
- All Implemented Interfaces:
- TypeVisitor<R,- P> 
- Direct Known Subclasses:
- TypeKindVisitor7
RELEASE_6 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.
 WARNING: The TypeVisitorinterface implemented by this class may have methods added to it or theTypeKind enumused in this class may have constants added to it in the future to accommodate new, currently unknown, language structures added to future versions of the Java programming language. Therefore, methods whose names begin with"visit"may be added to this class in the future; to avoid incompatibilities, classes and subclasses which extend this class should not declare any instance methods with names beginning with"visit".When such a new visit method is added, the default implementation in this class will be to directly or indirectly call the visitUnknownmethod. A new type kind visitor class will also be introduced to correspond to the new language level; this visitor will have different default behavior for the visit method in question. When a new visitor is introduced, portions of this visitor class may be deprecated, including its constructors.
- Since:
- 1.6
- See Also:
- 
Field SummaryFields declared in class javax.lang.model.util.SimpleTypeVisitor6DEFAULT_VALUE
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedDeprecated.Release 6 is obsolete; update to a visitor for a newer release level.protectedTypeKindVisitor6(R defaultValue) Deprecated.Release 6 is obsolete; update to a visitor for a newer release level.
- 
Method SummaryModifier and TypeMethodDescriptionvisitNoType(NoType t, P p) Visits aNoTypeinstance.visitNoTypeAsModule(NoType t, P p) Visits aMODULEpseudo-type.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 javax.lang.model.util.SimpleTypeVisitor6defaultAction, visitArray, visitDeclared, visitError, visitExecutable, visitNull, visitTypeVariable, visitWildcardMethods declared in class javax.lang.model.util.AbstractTypeVisitor6visit, visit, visitIntersection, visitUnion, visitUnknown
- 
Constructor Details- 
TypeKindVisitor6Deprecated.Release 6 is obsolete; update to a visitor for a newer release level.Constructor for concrete subclasses to call; usesnullfor the default value.
- 
TypeKindVisitor6Deprecated.Release 6 is obsolete; update to a visitor for a newer release level.Constructor for concrete subclasses to call; uses the argument for the default value.- Parameters:
- defaultValue- the value to assign to- SimpleTypeVisitor6.DEFAULT_VALUE
 
 
- 
- 
Method Details- 
visitPrimitiveVisits a primitive type.- Specified by:
- visitPrimitivein interface- TypeVisitor<R,- P> 
- Overrides:
- visitPrimitivein class- SimpleTypeVisitor6<R,- P> 
- Implementation Requirements:
- This implementation dispatches to the visit method for
 the specific kind of primitive type:
 BOOLEAN,BYTE, etc.
- Parameters:
- t- the type to visit
- p- a visitor-specified parameter
- Returns:
- the result of the kind-specific visit method
 
- 
visitPrimitiveAsBooleanVisits aBOOLEANprimitive type.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- t- the type to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitPrimitiveAsByteVisits aBYTEprimitive type.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- t- the type to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitPrimitiveAsShortVisits aSHORTprimitive type.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- t- the type to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitPrimitiveAsIntVisits anINTprimitive type.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- t- the type to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitPrimitiveAsLongVisits aLONGprimitive type.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- t- the type to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitPrimitiveAsCharVisits aCHARprimitive type.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- t- the type to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitPrimitiveAsFloatVisits aFLOATprimitive type.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- t- the type to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitPrimitiveAsDoubleVisits aDOUBLEprimitive type.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- t- the type to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitNoTypeVisits aNoTypeinstance.- Specified by:
- visitNoTypein interface- TypeVisitor<R,- P> 
- Overrides:
- visitNoTypein class- SimpleTypeVisitor6<R,- P> 
- Implementation Requirements:
- This implementation dispatches to the visit method for
 the specific kind of pseudo-type:
 VOID,PACKAGE,MODULE, orNONE.
- Parameters:
- t- the type to visit
- p- a visitor-specified parameter
- Returns:
- the result of the kind-specific visit method
 
- 
visitNoTypeAsVoidVisits aVOIDpseudo-type.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- t- the type to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitNoTypeAsPackageVisits aPACKAGEpseudo-type.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- t- the type to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
- 
visitNoTypeAsModuleVisits aMODULEpseudo-type.- Implementation Requirements:
- This implementation calls visitUnknown.
- Parameters:
- t- the type to visit
- p- a visitor-specified parameter
- Returns:
- the result of visitUnknown
- Since:
- 10
 
- 
visitNoTypeAsNoneVisits aNONEpseudo-type.- Implementation Requirements:
- This implementation calls defaultAction.
- Parameters:
- t- the type to visit
- p- a visitor-specified parameter
- Returns:
- the result of defaultAction
 
 
-