public static enum LtvVerification.Level extends Enum<LtvVerification.Level>
Enum Constant and Description |
---|
CRL
Include only CRL
|
OCSP
Include only OCSP
|
OCSP_CRL
Include both OCSP and CRL
|
OCSP_OPTIONAL_CRL
Include CRL only if OCSP can't be read
|
Modifier and Type | Method and Description |
---|---|
static LtvVerification.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LtvVerification.Level[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final LtvVerification.Level OCSP
public static final LtvVerification.Level CRL
public static final LtvVerification.Level OCSP_CRL
public static final LtvVerification.Level OCSP_OPTIONAL_CRL
public static LtvVerification.Level[] values()
for (LtvVerification.Level c : LtvVerification.Level.values()) System.out.println(c);
public static LtvVerification.Level valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant with the specified name
NullPointerException
- if the argument is null
Copyright © 2016. All rights reserved.