Top Description Constructors Methods
javax.lang.model.util

public Class SimpleTypeVisitor8<R, P>

extends SimpleTypeVisitor7<R, P>
Class Inheritance
Known Direct Subclasses
javax.lang.model.util.SimpleTypeVisitor9
Annotations
@SupportedSourceVersion:RELEASE_8
Type Parameters
<R>
the return type of this visitor's methods. Use Void for visitors that do not need to return results.
<P>
the type of the additional parameter to this visitor's methods. Use Void for visitors that do not need an additional parameter.
Imports
javax.annotation.processing.SupportedSourceVersion, javax.lang.model.SourceVersion, javax.lang.model.type.IntersectionType, .TypeVisitor

A simple visitor of types with default behavior appropriate for the RELEASE_8 source version. Visit methods corresponding to RELEASE_8 and earlier language constructs 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
1.8
See Also
Compatibility note for subclasses, SimpleTypeVisitor6, SimpleTypeVisitor7, SimpleTypeVisitor9, SimpleTypeVisitor14

Constructor Summary

AccessConstructor and Description
protected
SimpleTypeVisitor8()

Constructor for concrete subclasses; uses null for the default value.

protected
SimpleTypeVisitor8(R
the value to assign to DEFAULT_VALUE
defaultValue
)

Constructor for concrete subclasses; uses the argument for the default value.

Method Summary

Modifier and TypeMethod and Description
public R

Returns:

the result of defaultAction
visitIntersection
(IntersectionType
the type to visit
t
,
P
a visitor-specified parameter
p
)

Overrides javax.lang.model.util.AbstractTypeVisitor6.visitIntersection.

Implements javax.lang.model.type.TypeVisitor.visitIntersection.

Visits an intersection type.
Inherited from javax.lang.model.util.SimpleTypeVisitor7:
visitUnion

Constructor Detail

SimpleTypeVisitor8back to summary
protected SimpleTypeVisitor8()

Constructor for concrete subclasses; uses null for the default value.

Annotations
@SuppressWarnings:deprecation
SimpleTypeVisitor8back to summary
protected SimpleTypeVisitor8(R defaultValue)

Constructor for concrete subclasses; uses the argument for the default value.

Parameters
defaultValue:R

the value to assign to DEFAULT_VALUE

Annotations
@SuppressWarnings:deprecation

Method Detail

visitIntersectionback to summary
public R visitIntersection(IntersectionType t, P p)

Overrides javax.lang.model.util.AbstractTypeVisitor6.visitIntersection.

Implements javax.lang.model.type.TypeVisitor.visitIntersection.

Doc from javax.lang.model.type.TypeVisitor.visitIntersection.

Visits an intersection type.

Implementation Specification

This implementation calls defaultAction.

Parameters
t:IntersectionType

the type to visit

p:P

a visitor-specified parameter

Returns:R

the result of defaultAction

Annotations
@Override