public enum SecurityMode extends Enum<SecurityMode>
| Enum Constant and Description |
|---|
EXPLICIT
Indicates explicit security should be used.
|
IMPLICIT
Indicates implicit security should be used.
|
| Modifier and Type | Method and Description |
|---|---|
static SecurityMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecurityMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityMode IMPLICIT
public static final SecurityMode EXPLICIT
public static SecurityMode[] values()
for (SecurityMode c : SecurityMode.values()) System.out.println(c);
public static SecurityMode 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 © 2016–2024. All rights reserved.