public static enum DOFAuthenticator.SecurityType extends java.lang.Enum<DOFAuthenticator.SecurityType>
Enum Constant and Description |
---|
ANY
The security type may be point-to-point or multi-point.
|
MULTI_POINT
The security type is multi-point, which means multiple nodes have the same security that is limited to the security of the group.
|
TWO_POINT
The security type is point-to-point.
|
UNDEFINED
The type of security is undefined.
|
Modifier and Type | Method and Description |
---|---|
static DOFAuthenticator.SecurityType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DOFAuthenticator.SecurityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DOFAuthenticator.SecurityType UNDEFINED
public static final DOFAuthenticator.SecurityType TWO_POINT
public static final DOFAuthenticator.SecurityType MULTI_POINT
public static final DOFAuthenticator.SecurityType ANY
public static DOFAuthenticator.SecurityType[] values()
for (DOFAuthenticator.SecurityType c : DOFAuthenticator.SecurityType.values()) System.out.println(c);
public static DOFAuthenticator.SecurityType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null