API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.lang.model.util. TypeKindVisitor6 View Source
Author(s)
Joseph D. Darcy
Scott Seligman
Peter von der Ahé
Since
1.6
Version
1.6 06/08/07
Serial
Hierarchy
 Object
      AbstractTypeVisitor6
          SimpleTypeVisitor6
              TypeKindVisitor6
Implements
Subclasses
Description
@SupportedSourceVersion (value=RELEASE_6)
public class TypeKindVisitor6
  A visitor of types based on their kind with default behavior appropriate for the RELEASE_6 source version.
See also:   
Constructors
protected TypeKindVisitor6 ()
Constructor for concrete subclasses to call; uses null for the default value.
protected TypeKindVisitor6 ( R defaultValue)
  Constructor for concrete subclasses to call; uses the argument for the default value.
Methods
Hide/Show inherited methods
protected R defaultAction (TypeMirror e, P p) [Inherited From SimpleTypeVisitor6]
  The default action for visit methods.
publicfinal R visit (TypeMirror t) [Inherited From AbstractTypeVisitor6]
  Visits any type mirror as if by passing itself to that type mirror's accept method and passing null for the additional parameter.
publicfinal R visit (TypeMirror t, P p) [Inherited From AbstractTypeVisitor6]
  Visits any type mirror as if by passing itself to that type mirror's accept method.
public R visitArray (ArrayType t, P p) [Inherited From SimpleTypeVisitor6]
  Visits an array type. This implementation calls defaultAction.
public R visitDeclared (DeclaredType t, P p) [Inherited From SimpleTypeVisitor6]
  Visits a declared type. This implementation calls defaultAction.
public R visitError (ErrorType t, P p) [Inherited From SimpleTypeVisitor6]
  Visits an error type. This implementation calls defaultAction.
public R visitExecutable (ExecutableType t, P p) [Inherited From SimpleTypeVisitor6]
  Visits an executable type. This implementation calls defaultAction.
@Override
public R visitNoType (NoType t, P p) [Overrides SimpleTypeVisitor6]
  Visits a NoType instance, dispatching to the visit method for the specific kind of pseudo-type: VOID, PACKAGE, or NONE.
public R visitNoTypeAsNone (NoType t, P p)
  Visits a NONE pseudo-type by calling defaultAction.
public R visitNoTypeAsPackage (NoType t, P p)
  Visits a PACKAGE pseudo-type by calling defaultAction.
public R visitNoTypeAsVoid (NoType t, P p)
  Visits a VOID pseudo-type by calling defaultAction.
public R visitNull (NullType t, P p) [Inherited From SimpleTypeVisitor6]
  Visits the null type. This implementation calls defaultAction.
@Override
public R visitPrimitive (PrimitiveType t, P p) [Overrides SimpleTypeVisitor6]
  Visits a primitive type, dispatching to the visit method for the specific kind of primitive type: BOOLEAN, BYTE, etc.
public R visitPrimitiveAsBoolean (PrimitiveType t, P p)
  Visits a BOOLEAN primitive type by calling defaultAction.
public R visitPrimitiveAsByte (PrimitiveType t, P p)
  Visits a BYTE primitive type by calling defaultAction.
public R visitPrimitiveAsChar (PrimitiveType t, P p)
  Visits a CHAR primitive type by calling defaultAction.
public R visitPrimitiveAsDouble (PrimitiveType t, P p)
  Visits a DOUBLE primitive type by calling defaultAction.
public R visitPrimitiveAsFloat (PrimitiveType t, P p)
  Visits a FLOAT primitive type by calling defaultAction.
public R visitPrimitiveAsInt (PrimitiveType t, P p)
  Visits an INT primitive type by calling defaultAction.
public R visitPrimitiveAsLong (PrimitiveType t, P p)
  Visits a LONG primitive type by calling defaultAction.
public R visitPrimitiveAsShort (PrimitiveType t, P p)
  Visits a SHORT primitive type by calling defaultAction.
public R visitTypeVariable (TypeVariable t, P p) [Inherited From SimpleTypeVisitor6]
  Visits a type variable. This implementation calls defaultAction.
public R visitUnknown (TypeMirror t, P p) [Inherited From AbstractTypeVisitor6]
  Visits an unknown kind of type.
public R visitWildcard (WildcardType t, P p) [Inherited From SimpleTypeVisitor6]
  Visits a wildcard type. This implementation calls defaultAction.
Fields
Hide/Show inherited fields
protectedfinal R DEFAULT_VALUE [Inherited From SimpleTypeVisitor6]
Default value to be returned; defaultAction returns this value unless the method is overridden.
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar