public static enum VersionParser.ParseState extends Enum<VersionParser.ParseState>
| Enum Constant and Description |
|---|
COUNT |
DAY |
HOUR |
MAJOR |
MIN |
MINOR |
MONTH |
PRODUCTSTATE |
RELEASESTATE |
STEP |
UNDEFIND |
YEAR |
| Modifier and Type | Method and Description |
|---|---|
static VersionParser.ParseState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VersionParser.ParseState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VersionParser.ParseState UNDEFIND
public static final VersionParser.ParseState MAJOR
public static final VersionParser.ParseState MINOR
public static final VersionParser.ParseState RELEASESTATE
public static final VersionParser.ParseState STEP
public static final VersionParser.ParseState PRODUCTSTATE
public static final VersionParser.ParseState COUNT
public static final VersionParser.ParseState YEAR
public static final VersionParser.ParseState MONTH
public static final VersionParser.ParseState DAY
public static final VersionParser.ParseState HOUR
public static final VersionParser.ParseState MIN
public static VersionParser.ParseState[] values()
for (VersionParser.ParseState c : VersionParser.ParseState.values()) System.out.println(c);
public static VersionParser.ParseState 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 © 2007–2019 Andreas W. Bartels. All rights reserved.