|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ObjectClassType>
org.opends.server.types.ObjectClassType
@PublicAPI(stability=UNCOMMITTED, mayInstantiate=false, mayExtend=false, mayInvoke=true) public enum ObjectClassType
This enumeration defines the set of possible objectclass types that may be used, as defined in RFC 2252.
Enum Constant Summary | |
---|---|
ABSTRACT
The objectclass type that to use for classes declared "abstract". |
|
AUXILIARY
The objectclass type that to use for classes declared "auxiliary". |
|
STRUCTURAL
The objectclass type that to use for classes declared "structural". |
Method Summary | |
---|---|
java.lang.String |
toString()
Retrieves a string representation of this objectclass 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 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 |