public static enum JavadocUtils.JavadocTagType extends Enum<JavadocUtils.JavadocTagType>
| Enum Constant and Description |
|---|
ALL
All validTags.
|
BLOCK
Block type.
|
INLINE
Inline type.
|
| Modifier and Type | Method and Description |
|---|---|
static JavadocUtils.JavadocTagType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JavadocUtils.JavadocTagType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavadocUtils.JavadocTagType BLOCK
public static final JavadocUtils.JavadocTagType INLINE
public static final JavadocUtils.JavadocTagType ALL
public static JavadocUtils.JavadocTagType[] values()
for (JavadocUtils.JavadocTagType c : JavadocUtils.JavadocTagType.values()) System.out.println(c);
public static JavadocUtils.JavadocTagType 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 nullCopyright © 2001-2016. All Rights Reserved.