public enum CryptoOperationRequirementLevel extends Enum<CryptoOperationRequirementLevel>
Enum Constant and Description |
---|
always
Indicates that the operation must always be performed.
|
conditional
Indicates that the operation should only be performed if the binding/transport does not provide equivalent protection.
|
never
Indicates the operation should never be performed.
|
Modifier and Type | Method and Description |
---|---|
static CryptoOperationRequirementLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CryptoOperationRequirementLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CryptoOperationRequirementLevel always
public static final CryptoOperationRequirementLevel conditional
public static final CryptoOperationRequirementLevel never
public static CryptoOperationRequirementLevel[] values()
for (CryptoOperationRequirementLevel c : CryptoOperationRequirementLevel.values()) System.out.println(c);
public static CryptoOperationRequirementLevel 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 nullCopyright © 1999–2014. All rights reserved.