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