org.openliberty.xmltooling.idsis.dap
Enum DAPQueryItem.ObjectType

java.lang.Object
  extended by java.lang.Enum<DAPQueryItem.ObjectType>
      extended by org.openliberty.xmltooling.idsis.dap.DAPQueryItem.ObjectType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DAPQueryItem.ObjectType>
Enclosing class:
DAPQueryItem

public static enum DAPQueryItem.ObjectType
extends java.lang.Enum<DAPQueryItem.ObjectType>

This enum enumerates the ObjectTypes supported by ID-SIS-DAP

Author:
asa

Enum Constant Summary
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].
 
Field Summary
(package private)  java.lang.String value
           
 
Method Summary
static DAPQueryItem.ObjectType objectTypeForValue(java.lang.String value)
           
static DAPQueryItem.ObjectType valueOf(java.lang.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're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ENTRY

public static final DAPQueryItem.ObjectType ENTRY
Object named by distinguished name, often referred to as dn and containing a directory entry as defined in [RFC2251].


SUBSCRIPTION

public static final DAPQueryItem.ObjectType SUBSCRIPTION
A Subscription object, as defined in [LibertySUBS]. Furthermore the subscriptions themselves should follow the semantics of [LDAPPSearch].

Field Detail

value

java.lang.String value
Method Detail

values

public static final DAPQueryItem.ObjectType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(DAPQueryItem.ObjectType c : DAPQueryItem.ObjectType.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static DAPQueryItem.ObjectType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

objectTypeForValue

public static DAPQueryItem.ObjectType objectTypeForValue(java.lang.String value)