public static enum JavaDocReader.ParsingState extends Enum<JavaDocReader.ParsingState>
| Enum Constant and Description |
|---|
ON_BODY |
ON_PARAM |
UNSUPPORTED |
| Modifier and Type | Method and Description |
|---|---|
static JavaDocReader.ParsingState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JavaDocReader.ParsingState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavaDocReader.ParsingState ON_PARAM
public static final JavaDocReader.ParsingState ON_BODY
public static final JavaDocReader.ParsingState UNSUPPORTED
public static JavaDocReader.ParsingState[] values()
for (JavaDocReader.ParsingState c : JavaDocReader.ParsingState.values()) System.out.println(c);
public static JavaDocReader.ParsingState 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 © 2003–2025 MuleSoft, Inc.. All rights reserved.