- CASE - com.sun.source.tree.Tree.Kind
-
- CaseTree - Interface in com.sun.source.tree
-
A tree node for a case
in a switch
statement.
- CATCH - com.sun.source.tree.Tree.Kind
-
- CatchTree - Interface in com.sun.source.tree
-
A tree node for a catch
block in a try
statement.
- CHAR_LITERAL - com.sun.source.tree.Tree.Kind
-
Used for instances of
LiteralTree
representing
a character literal expression of type
char
.
- CLASS - com.sun.source.tree.Tree.Kind
-
Used for instances of
ClassTree
representing classes.
- ClassTree - Interface in com.sun.source.tree
-
A tree node for a class, interface, enum, or annotation
type declaration.
- CODE - com.sun.source.doctree.DocTree.Kind
-
Used for instances of
LiteralTree
representing an @code tag.
- com.sun.source.doctree - package com.sun.source.doctree
-
Provides interfaces to represent documentation comments as abstract syntax
trees (AST).
- com.sun.source.tree - package com.sun.source.tree
-
Provides interfaces to represent source code as abstract syntax
trees (AST).
- com.sun.source.util - package com.sun.source.util
-
Provides utilities for operations on abstract syntax trees (AST).
- COMMENT - com.sun.source.doctree.DocTree.Kind
-
Used for instances of
CommentTree
representing an HTML comment.
- CommentTree - Interface in com.sun.source.doctree
-
An embedded HTML comment.
- COMPILATION - com.sun.source.util.TaskEvent.Kind
-
Sent before parsing first source file, and after writing the last output file.
- COMPILATION_UNIT - com.sun.source.tree.Tree.Kind
-
- CompilationUnitTree - Interface in com.sun.source.tree
-
Represents the abstract syntax tree for compilation units (source
files) and package declarations (package-info.java).
- CompoundAssignmentTree - Interface in com.sun.source.tree
-
A tree node for compound assignment operator.
- CONDITIONAL_AND - com.sun.source.tree.Tree.Kind
-
Used for instances of
BinaryTree
representing
conditional-and
&&
.
- CONDITIONAL_EXPRESSION - com.sun.source.tree.Tree.Kind
-
- CONDITIONAL_OR - com.sun.source.tree.Tree.Kind
-
Used for instances of
BinaryTree
representing
conditional-or
||
.
- ConditionalExpressionTree - Interface in com.sun.source.tree
-
A tree node for the conditional operator ?
- CONTINUE - com.sun.source.tree.Tree.Kind
-
- ContinueTree - Interface in com.sun.source.tree
-
A tree node for a continue
statement.