public static enum JavadocUtil.JavadocTagType extends java.lang.Enum<JavadocUtil.JavadocTagType>
| Enum Constant and Description |
|---|
ALL
All validTags.
|
BLOCK
Block type.
|
INLINE
Inline type.
|
| Modifier and Type | Method and Description |
|---|---|
static JavadocUtil.JavadocTagType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JavadocUtil.JavadocTagType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavadocUtil.JavadocTagType BLOCK
public static final JavadocUtil.JavadocTagType INLINE
public static final JavadocUtil.JavadocTagType ALL
public static JavadocUtil.JavadocTagType[] values()
for (JavadocUtil.JavadocTagType c : JavadocUtil.JavadocTagType.values()) System.out.println(c);
public static JavadocUtil.JavadocTagType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2001-2020. All Rights Reserved.