public enum TimestampingMode extends Enum<TimestampingMode>
| Enum Constant and Description |
|---|
AUTHENTICODE
Legacy Microsoft Authenticode timestamping
|
RFC3161
RFC 3161 timestamping
|
| Modifier and Type | Method and Description |
|---|---|
static TimestampingMode |
of(String mode) |
static TimestampingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimestampingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimestampingMode AUTHENTICODE
public static final TimestampingMode RFC3161
public static TimestampingMode of(String mode)
public static TimestampingMode 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 static TimestampingMode[] values()
for (TimestampingMode c : TimestampingMode.values()) System.out.println(c);
Copyright © 2012–2020. All rights reserved.