public static enum Value.Property extends Enum<Value.Property> implements StringValue<Value.Property>
| Modifier and Type | Method and Description |
|---|---|
static Value.Property |
fromValue(String v) |
String |
toString() |
String |
value() |
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 String value()
value in interface StringValue<Value.Property>public static Value.Property fromValue(String v)
public String toString()
toString in class Enum<Value.Property>Copyright © 2022. All rights reserved.