@Exported public static enum DocTree.Kind extends Enum<DocTree.Kind>
| Enum Constant and Description | 
|---|
| ATTRIBUTEUsed for instances of  AttributeTreerepresenting an HTML attribute. | 
| AUTHORUsed for instances of  AuthorTreerepresenting an @author tag. | 
| CODEUsed for instances of  LiteralTreerepresenting an @code tag. | 
| COMMENTUsed for instances of  CommentTreerepresenting an HTML comment. | 
| DEPRECATEDUsed for instances of  DeprecatedTreerepresenting an @deprecated tag. | 
| DOC_COMMENTUsed for instances of  DocCommentTreerepresenting a complete doc comment. | 
| DOC_ROOTUsed for instances of  DocRootTreerepresenting an @docRoot tag. | 
| END_ELEMENTUsed for instances of  EndElementTreerepresenting the end of an HTML element. | 
| ENTITYUsed for instances of  EntityTreerepresenting an HTML entity. | 
| ERRONEOUSUsed for instances of  ErroneousTreerepresenting some invalid text. | 
| EXCEPTIONUsed for instances of  ThrowsTreerepresenting an @exception tag. | 
| IDENTIFIERUsed for instances of  IdentifierTreerepresenting an identifier. | 
| INHERIT_DOCUsed for instances of  InheritDocTreerepresenting an @inheritDoc tag. | 
| LINKUsed for instances of  LinkTreerepresenting an @link tag. | 
| LINK_PLAINUsed for instances of  LinkTreerepresenting an @linkplain tag. | 
| LITERALUsed for instances of  LiteralTreerepresenting an @literal tag. | 
| OTHERAn implementation-reserved node. | 
| PARAMUsed for instances of  ParamTreerepresenting an @param tag. | 
| REFERENCEUsed for instances of  ReferenceTreerepresenting a reference to a element in the
 Java programming language. | 
| RETURNUsed for instances of  ReturnTreerepresenting an @return tag. | 
| SEEUsed for instances of  SeeTreerepresenting an @see tag. | 
| SERIALUsed for instances of  SerialTreerepresenting an @serial tag. | 
| SERIAL_DATAUsed for instances of  SerialDataTreerepresenting an @serialData tag. | 
| SERIAL_FIELDUsed for instances of  SerialFieldTreerepresenting an @serialField tag. | 
| SINCEUsed for instances of  SinceTreerepresenting an @since tag. | 
| START_ELEMENTUsed for instances of  EndElementTreerepresenting the start of an HTML element. | 
| TEXTUsed for instances of  TextTreerepresenting some documentation text. | 
| THROWSUsed for instances of  ThrowsTreerepresenting an @throws tag. | 
| UNKNOWN_BLOCK_TAGUsed for instances of  UnknownBlockTagTreerepresenting an unknown block tag. | 
| UNKNOWN_INLINE_TAGUsed for instances of  UnknownInlineTagTreerepresenting an unknown inline tag. | 
| VALUEUsed for instances of  ValueTreerepresenting an @value tag. | 
| VERSIONUsed for instances of  VersionTreerepresenting an @version tag. | 
| Modifier and Type | Method and Description | 
|---|---|
| static DocTree.Kind | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static DocTree.Kind[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final DocTree.Kind ATTRIBUTE
AttributeTree
 representing an HTML attribute.public static final DocTree.Kind AUTHOR
AuthorTree
 representing an @author tag.public static final DocTree.Kind CODE
LiteralTree
 representing an @code tag.public static final DocTree.Kind COMMENT
CommentTree
 representing an HTML comment.public static final DocTree.Kind DEPRECATED
DeprecatedTree
 representing an @deprecated tag.public static final DocTree.Kind DOC_COMMENT
DocCommentTree
 representing a complete doc comment.public static final DocTree.Kind DOC_ROOT
DocRootTree
 representing an @docRoot tag.public static final DocTree.Kind END_ELEMENT
EndElementTree
 representing the end of an HTML element.public static final DocTree.Kind ENTITY
EntityTree
 representing an HTML entity.public static final DocTree.Kind ERRONEOUS
ErroneousTree
 representing some invalid text.public static final DocTree.Kind EXCEPTION
ThrowsTree
 representing an @exception tag.public static final DocTree.Kind IDENTIFIER
IdentifierTree
 representing an identifier.public static final DocTree.Kind INHERIT_DOC
InheritDocTree
 representing an @inheritDoc tag.public static final DocTree.Kind LINK
LinkTree
 representing an @link tag.public static final DocTree.Kind LINK_PLAIN
LinkTree
 representing an @linkplain tag.public static final DocTree.Kind LITERAL
LiteralTree
 representing an @literal tag.public static final DocTree.Kind PARAM
ParamTree
 representing an @param tag.public static final DocTree.Kind REFERENCE
ReferenceTree
 representing a reference to a element in the
 Java programming language.public static final DocTree.Kind RETURN
ReturnTree
 representing an @return tag.public static final DocTree.Kind SEE
SeeTree
 representing an @see tag.public static final DocTree.Kind SERIAL
SerialTree
 representing an @serial tag.public static final DocTree.Kind SERIAL_DATA
SerialDataTree
 representing an @serialData tag.public static final DocTree.Kind SERIAL_FIELD
SerialFieldTree
 representing an @serialField tag.public static final DocTree.Kind SINCE
SinceTree
 representing an @since tag.public static final DocTree.Kind START_ELEMENT
EndElementTree
 representing the start of an HTML element.public static final DocTree.Kind TEXT
TextTree
 representing some documentation text.public static final DocTree.Kind THROWS
ThrowsTree
 representing an @throws tag.public static final DocTree.Kind UNKNOWN_BLOCK_TAG
UnknownBlockTagTree
 representing an unknown block tag.public static final DocTree.Kind UNKNOWN_INLINE_TAG
UnknownInlineTagTree
 representing an unknown inline tag.public static final DocTree.Kind VALUE
ValueTree
 representing an @value tag.public static final DocTree.Kind VERSION
VersionTree
 representing an @version tag.public static final DocTree.Kind OTHER
public final String tagName
public static DocTree.Kind[] values()
for (DocTree.Kind c : DocTree.Kind.values()) System.out.println(c);
public static DocTree.Kind valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null
 Copyright © 2005, 2017, Oracle and/or its affiliates.  All rights reserved.