|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ObjectClassType>
com.unboundid.ldap.sdk.schema.ObjectClassType
@ThreadSafety(level=COMPLETELY_THREADSAFE) public enum ObjectClassType
This enum defines the set of object class types that are defined in the LDAP protocol.
Enum Constant Summary | |
---|---|
ABSTRACT
The object class type for abstract object classes. |
|
AUXILIARY
The object class type for auxiliary object classes. |
|
STRUCTURAL
The object class type for structural object classes. |
Method Summary | |
---|---|
static ObjectClassType |
forName(java.lang.String name)
Retrieves the object class type value with the specified name. |
java.lang.String |
getName()
Retrieves the name of this object class type. |
java.lang.String |
toString()
Retrieves a string representation of this object class type. |
static ObjectClassType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ObjectClassType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ObjectClassType ABSTRACT
public static final ObjectClassType STRUCTURAL
public static final ObjectClassType AUXILIARY
Method Detail |
---|
public static ObjectClassType[] values()
for (ObjectClassType c : ObjectClassType.values()) System.out.println(c);
public static ObjectClassType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String getName()
public static ObjectClassType forName(java.lang.String name)
name
- The name of the object class type to retrieve.
null
if
there is no type with the given name.public java.lang.String toString()
toString
in class java.lang.Enum<ObjectClassType>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |