public enum ClientSecurityType extends Enum<ClientSecurityType>
Modifier and Type | Method and Description |
---|---|
static ClientSecurityType |
fromString(String value)
Constructs enum object from string representation
|
String |
toString() |
static ClientSecurityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClientSecurityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientSecurityType LOCAL
public static final ClientSecurityType LDAP
public static ClientSecurityType[] values()
for (ClientSecurityType c : ClientSecurityType.values()) System.out.println(c);
public static ClientSecurityType 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 static ClientSecurityType fromString(String value)
value
- string representation of client security typepublic String toString()
toString
in class Enum<ClientSecurityType>
Copyright © 2014. All rights reserved.