public enum OCSPMode extends Enum<OCSPMode>
Enum Constant and Description |
---|
FAIL_CLOSED
Fail closed, aka.
|
FAIL_OPEN
Fail open, aka.
|
INSECURE
Insure mode.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static OCSPMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OCSPMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OCSPMode FAIL_CLOSED
public static final OCSPMode FAIL_OPEN
public static final OCSPMode INSECURE
public static OCSPMode[] values()
for (OCSPMode c : OCSPMode.values()) System.out.println(c);
public static OCSPMode 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 int getValue()
Copyright © 2022. All rights reserved.