public enum LdapServerType extends Enum<LdapServerType>
Java class for ldapServerType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ldapServerType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="OpenLDAP"/> <enumeration value="ApacheDS"/> <enumeration value="OpenDS"/> <enumeration value="OpenDJ"/> <enumeration value="OracleDS"/> <enumeration value="SunDS"/> <enumeration value="NetscapeDS"/> <enumeration value="ActiveDirectory"/> <enumeration value="NovellEDirectory"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ACTIVE_DIRECTORY |
APACHE_DS |
NETSCAPE_DS |
NOVELL_E_DIRECTORY |
OPEN_DJ |
OPEN_DS |
OPEN_LDAP |
ORACLE_DS |
SUN_DS |
Modifier and Type | Method and Description |
---|---|
static LdapServerType |
fromValue(String v) |
String |
value() |
static LdapServerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LdapServerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LdapServerType OPEN_LDAP
public static final LdapServerType APACHE_DS
public static final LdapServerType OPEN_DS
public static final LdapServerType OPEN_DJ
public static final LdapServerType ORACLE_DS
public static final LdapServerType SUN_DS
public static final LdapServerType NETSCAPE_DS
public static final LdapServerType ACTIVE_DIRECTORY
public static final LdapServerType NOVELL_E_DIRECTORY
public static LdapServerType[] values()
for (LdapServerType c : LdapServerType.values()) System.out.println(c);
public static LdapServerType 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 LdapServerType fromValue(String v)
Copyright © 2005-2024 LSC project. All Rights Reserved.