public enum ObjectClassType extends Enum<ObjectClassType>
Enum Constant and Description |
---|
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".
|
Modifier and Type | Method and Description |
---|---|
String |
toString()
Retrieves a string representation of this objectclass type.
|
static ObjectClassType |
valueOf(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.
|
public static final ObjectClassType ABSTRACT
public static final ObjectClassType STRUCTURAL
public static final ObjectClassType AUXILIARY
public static ObjectClassType[] values()
for (ObjectClassType c : ObjectClassType.values()) System.out.println(c);
public static ObjectClassType 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 String toString()
toString
in class Enum<ObjectClassType>
Copyright 2011-2017 ForgeRock AS.