public static enum DAPQueryItem.ObjectType extends Enum<DAPQueryItem.ObjectType>
| Enum Constant and Description |
|---|
ENTRY
Object named by distinguished name, often referred to as dn and containing a directory
entry as defined in [RFC2251].
|
SUBSCRIPTION
A
Subscription object, as defined in [LibertySUBS]. |
| Modifier and Type | Method and Description |
|---|---|
static DAPQueryItem.ObjectType |
objectTypeForValue(String value) |
static DAPQueryItem.ObjectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DAPQueryItem.ObjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DAPQueryItem.ObjectType ENTRY
public static final DAPQueryItem.ObjectType SUBSCRIPTION
Subscription object, as defined in [LibertySUBS]. Furthermore the subscriptions themselves
should follow the semantics of [LDAPPSearch].String value
public static DAPQueryItem.ObjectType[] values()
for (DAPQueryItem.ObjectType c : DAPQueryItem.ObjectType.values()) System.out.println(c);
public static DAPQueryItem.ObjectType 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 DAPQueryItem.ObjectType objectTypeForValue(String value)
Copyright © 1999–2015. All rights reserved.