public enum Validity extends Enum<Validity>
Enum Constant and Description |
---|
NOT_VALID
Not Valid.
|
NOT_YET_VALID
Not Yet Valid.
|
UNKNOWN
Unknown.
|
VALID
Valid.
|
Modifier and Type | Method and Description |
---|---|
static Validity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Validity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Validity VALID
public static final Validity NOT_VALID
public static final Validity NOT_YET_VALID
public static final Validity UNKNOWN
public static Validity[] values()
for (Validity c : Validity.values()) System.out.println(c);
public static Validity 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 © 2019 Communote team. All rights reserved.