public enum RevocationCheckOrder extends Enum<RevocationCheckOrder>
| Enum Constant and Description |
|---|
CRLFirst
The CRL revocation information is checked first.
|
OCSPFirst
The OCSP revocation information is checked first.
|
| Modifier and Type | Method and Description |
|---|---|
static RevocationCheckOrder |
getValueFromString(String value)
Returns a
RevocationCheckOrder object that is based on the
specified string value. |
String |
toString() |
static RevocationCheckOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RevocationCheckOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RevocationCheckOrder OCSPFirst
public static final RevocationCheckOrder CRLFirst
public static RevocationCheckOrder[] values()
for (RevocationCheckOrder c : RevocationCheckOrder.values()) System.out.println(c);
public static RevocationCheckOrder 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 String toString()
toString in class Enum<RevocationCheckOrder>public static RevocationCheckOrder getValueFromString(String value)
RevocationCheckOrder object that is based on the
specified string value.value - A string value that specifies the order in which revocation
checking is performed.RevocationCheckOrder object that is based on the
specified string value.Copyright © 1982–2023 Adobe Systems Incorporated. All rights reserved.