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