javax.lang.model.util |
Utilities to assist in the processing of
and
.
Unless otherwise specified in a particular implementation, the
collections returned by methods in this package should be expected
to be unmodifiable by the caller and unsafe for concurrent access.
Unless otherwise specified, methods in this package will throw
a
NullPointerException if given a
null argument.
author: Joseph D. |
Java Source File Name | Type | Comment |
AbstractAnnotationValueVisitor6.java | Class | A skeletal visitor for annotation values with default behavior
appropriate for the
SourceVersion.RELEASE_6 RELEASE_6 source version.
WARNING: The
AnnotationValueVisitor interface
implemented by this class may have methods 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 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 call the
AbstractAnnotationValueVisitor6.visitUnknown visitUnknown method. |
AbstractElementVisitor6.java | Class | A skeletal visitor of program elements with default behavior
appropriate for the
SourceVersion.RELEASE_6 RELEASE_6 source version.
WARNING: The
ElementVisitor interface
implemented by this class may have methods 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 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 call the
AbstractElementVisitor6.visitUnknown visitUnknown method. |
AbstractTypeVisitor6.java | Class | A skeletal visitor of types with default behavior appropriate for
the version 6 language level.
WARNING: The
TypeVisitor interface implemented
by this class may have methods 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 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 call the
AbstractTypeVisitor6.visitUnknown visitUnknown method. |
ElementFilter.java | Class | Filters for selecting just the elements of interest from a
collection of elements. |
ElementKindVisitor6.java | Class | A visitor of program elements based on their
with default behavior appropriate for the
SourceVersion.RELEASE_6 RELEASE_6 source version. |
Elements.java | Interface | Utility methods for operating on program elements.
Compatibility Note: Methods may be added to this interface
in future releases of the platform.
author: Joseph D. |
ElementScanner6.java | Class | A scanning visitor of program elements with default behavior
appropriate for the
SourceVersion.RELEASE_6 RELEASE_6 source version. |
package-info.java | | |
SimpleAnnotationValueVisitor6.java | Class | A simple visitor for annotation values with default behavior
appropriate for the
SourceVersion.RELEASE_6 RELEASE_6 source version. |
SimpleElementVisitor6.java | Class | A simple visitor of program elements with default behavior
appropriate for the
SourceVersion.RELEASE_6 RELEASE_6 source version.
Visit methods corresponding to
RELEASE_6 language
constructs call
SimpleElementVisitor6.defaultAction , passing their arguments to
defaultAction 's corresponding parameters.
Methods in this class may be overridden subject to their
general contract. |
SimpleTypeVisitor6.java | Class | A simple visitor of types with default behavior appropriate for the
SourceVersion.RELEASE_6 RELEASE_6 source version.
Visit methods corresponding to
RELEASE_6 language
constructs call
SimpleTypeVisitor6.defaultAction , passing their arguments to
defaultAction 's corresponding parameters.
Methods in this class may be overridden subject to their
general contract. |
TypeKindVisitor6.java | Class | A visitor of types based on their
with
default behavior appropriate for the
SourceVersion.RELEASE_6RELEASE_6 source version. |
Types.java | Interface | Utility methods for operating on types.
Compatibility Note: Methods may be added to this interface
in future releases of the platform.
author: Joseph D. |