public enum VALUE_PROPERTY extends Enum<VALUE_PROPERTY>
| Modifier and Type | Method and Description |
|---|---|
static VALUE_PROPERTY |
byName(String name) |
String |
getName() |
static VALUE_PROPERTY |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VALUE_PROPERTY[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VALUE_PROPERTY VALID
public static final VALUE_PROPERTY INVALID
public static final VALUE_PROPERTY MISSING
public static VALUE_PROPERTY[] values()
for (VALUE_PROPERTY c : VALUE_PROPERTY.values()) System.out.println(c);
public static VALUE_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 nullpublic static VALUE_PROPERTY byName(String name)
public String getName()
Copyright © 2001–2020 JBoss by Red Hat. All rights reserved.