public enum HandleType extends Enum<HandleType>
PortalConnectorFactory
Enum Constant and Description |
---|
ldap
Handles of type ldap are used to access LDAP servers
|
sql
Handles of type sql are used to access SQL databases
|
Modifier and Type | Method and Description |
---|---|
static HandleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HandleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HandleType sql
public static final HandleType ldap
public static HandleType[] values()
for (HandleType c : HandleType.values()) System.out.println(c);
public static HandleType 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 © 2014 Gentics Software GmbH. All Rights Reserved.