public enum LdapAuthenticationType extends Enum<LdapAuthenticationType>
Java class for ldapAuthenticationType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ldapAuthenticationType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="NONE"/> <enumeration value="SIMPLE"/> <enumeration value="SASL"/> <enumeration value="DIGEST-MD5"/> <enumeration value="GSSAPI"/> </restriction> </simpleType>
Enum Constant and Description |
---|
DIGEST_MD_5 |
GSSAPI |
NONE |
SASL |
SIMPLE |
Modifier and Type | Method and Description |
---|---|
static LdapAuthenticationType |
fromValue(String v) |
String |
value() |
static LdapAuthenticationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LdapAuthenticationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LdapAuthenticationType NONE
public static final LdapAuthenticationType SIMPLE
public static final LdapAuthenticationType SASL
public static final LdapAuthenticationType DIGEST_MD_5
public static final LdapAuthenticationType GSSAPI
public static LdapAuthenticationType[] values()
for (LdapAuthenticationType c : LdapAuthenticationType.values()) System.out.println(c);
public static LdapAuthenticationType 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 String value()
public static LdapAuthenticationType fromValue(String v)
Copyright © 2005-2024 LSC project. All Rights Reserved.