public enum UnlimitedKeyJCERequirement extends Enum<UnlimitedKeyJCERequirement>
| Enum Constant and Description | 
|---|
| ALWAYSThe unlimited key JCE policy is required, unconditionally (even if Kerberos is not enabled) | 
| KERBEROS_ENABLEDThe unlimited key JCE policy is required if Kerberos is enabled | 
| NEVERThe unlimited key JCE policy is not required, unconditionally (even if Kerberos is enabled) | 
| Modifier and Type | Field and Description | 
|---|---|
| static UnlimitedKeyJCERequirement | DEFAULTThe default value to use if the unlimited key JCE policy requirement is not set. | 
| Modifier and Type | Method and Description | 
|---|---|
| static UnlimitedKeyJCERequirement | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static UnlimitedKeyJCERequirement[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final UnlimitedKeyJCERequirement ALWAYS
public static final UnlimitedKeyJCERequirement KERBEROS_ENABLED
public static final UnlimitedKeyJCERequirement NEVER
public static final UnlimitedKeyJCERequirement DEFAULT
public static UnlimitedKeyJCERequirement[] values()
for (UnlimitedKeyJCERequirement c : UnlimitedKeyJCERequirement.values()) System.out.println(c);
public static UnlimitedKeyJCERequirement 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 © 2022 Apache Software Foundation. All rights reserved.