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