- DEFAULT_VALUE - Variable in class com.sun.source.util.SimpleDocTreeVisitor
-
- DEFAULT_VALUE - Variable in class com.sun.source.util.SimpleTreeVisitor
-
- defaultAction(DocTree, P) - Method in class com.sun.source.util.SimpleDocTreeVisitor
-
The default action, used by all visit methods that are not overridden.
- defaultAction(Tree, P) - Method in class com.sun.source.util.SimpleTreeVisitor
-
The default action, used by all visit methods that are not overridden.
- DEPRECATED - com.sun.source.doctree.DocTree.Kind
-
- DeprecatedTree - Interface in com.sun.source.doctree
-
A tree node for an @deprecated block tag.
- DirectiveTree - Interface in com.sun.source.tree
-
A super-type for all the directives in a ModuleTree.
- DIVIDE - com.sun.source.tree.Tree.Kind
-
Used for instances of
BinaryTree
representing
division
/
.
- DIVIDE_ASSIGNMENT - com.sun.source.tree.Tree.Kind
-
- DO_WHILE_LOOP - com.sun.source.tree.Tree.Kind
-
- DOC_COMMENT - com.sun.source.doctree.DocTree.Kind
-
Used for instances of
DocCommentTree
representing a complete doc comment.
- DOC_ROOT - com.sun.source.doctree.DocTree.Kind
-
Used for instances of
DocRootTree
representing an @docRoot tag.
- DocCommentTree - Interface in com.sun.source.doctree
-
The top level representation of a documentation comment.
- DocRootTree - Interface in com.sun.source.doctree
-
A tree node for an @docroot inline tag.
- DocSourcePositions - Interface in com.sun.source.util
-
Provides methods to obtain the position of a DocTree within a javadoc comment.
- DocTree - Interface in com.sun.source.doctree
-
Common interface for all nodes in a documentation syntax tree.
- DocTree.Kind - Enum in com.sun.source.doctree
-
Enumerates all kinds of trees.
- DocTreeFactory - Interface in com.sun.source.util
-
Factory for creating DocTree
nodes.
- DocTreePath - Class in com.sun.source.util
-
A path of tree nodes, typically used to represent the sequence of ancestor
nodes of a tree node up to the top level DocCommentTree node.
- DocTreePath(DocTreePath, DocTree) - Constructor for class com.sun.source.util.DocTreePath
-
Creates a DocTreePath for a child node.
- DocTreePath(TreePath, DocCommentTree) - Constructor for class com.sun.source.util.DocTreePath
-
Creates a DocTreePath for a root node.
- DocTreePathScanner<R,P> - Class in com.sun.source.util
-
A DocTreeVisitor that visits all the child tree nodes, and provides
support for maintaining a path for the parent nodes.
- DocTreePathScanner() - Constructor for class com.sun.source.util.DocTreePathScanner
-
- DocTrees - Class in com.sun.source.util
-
Provides access to syntax trees for doc comments.
- DocTrees() - Constructor for class com.sun.source.util.DocTrees
-
- DocTreeScanner<R,P> - Class in com.sun.source.util
-
A TreeVisitor that visits all the child tree nodes.
- DocTreeScanner() - Constructor for class com.sun.source.util.DocTreeScanner
-
- DocTreeVisitor<R,P> - Interface in com.sun.source.doctree
-
A visitor of trees, in the style of the visitor design pattern.
- DOUBLE - com.sun.source.doctree.AttributeTree.ValueKind
-
The attribute value is enclosed in double quotation marks.
- DOUBLE_LITERAL - com.sun.source.tree.Tree.Kind
-
Used for instances of
LiteralTree
representing
a floating-point literal expression of type
double
.
- DoWhileLoopTree - Interface in com.sun.source.tree
-
A tree node for a do
statement.