public enum TimestampQualification extends Enum<TimestampQualification>
| Enum Constant and Description |
|---|
QTSA
Qualified timestamp (QTSA).
|
TSA
Not qualified timestamp (TSA).
|
UNKNOWN
Unknown qualification.
|
| Modifier and Type | Method and Description |
|---|---|
static TimestampQualification |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimestampQualification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimestampQualification QTSA
public static final TimestampQualification TSA
public static final TimestampQualification UNKNOWN
public static TimestampQualification[] values()
for (TimestampQualification c : TimestampQualification.values()) System.out.println(c);
public static TimestampQualification 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 null