public enum TimestampedObjectType extends Enum<TimestampedObjectType>
| Enum Constant and Description |
|---|
CERTIFICATE |
REVOCATION |
SIGNATURE |
TIMESTAMP |
| Modifier and Type | Method and Description |
|---|---|
static TimestampedObjectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimestampedObjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimestampedObjectType SIGNATURE
public static final TimestampedObjectType CERTIFICATE
public static final TimestampedObjectType REVOCATION
public static final TimestampedObjectType TIMESTAMP
public static TimestampedObjectType[] values()
for (TimestampedObjectType c : TimestampedObjectType.values()) System.out.println(c);
public static TimestampedObjectType 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.