public static enum DefinitionDecodingException.Reason extends Enum<DefinitionDecodingException.Reason>
Enum Constant and Description |
---|
ABSTRACT_TYPE_INFORMATION
The managed object could be found but its type resolved to an
abstract managed object definition.
|
NO_TYPE_INFORMATION
The managed object could be found but did not contain any type
information (eg missing object classes in LDAP).
|
WRONG_TYPE_INFORMATION
The managed object could be found but did not contain the
expected type information (eg incorrect object classes in
LDAP).
|
Modifier and Type | Method and Description |
---|---|
static DefinitionDecodingException.Reason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefinitionDecodingException.Reason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefinitionDecodingException.Reason ABSTRACT_TYPE_INFORMATION
public static final DefinitionDecodingException.Reason NO_TYPE_INFORMATION
public static final DefinitionDecodingException.Reason WRONG_TYPE_INFORMATION
public static DefinitionDecodingException.Reason[] values()
for (DefinitionDecodingException.Reason c : DefinitionDecodingException.Reason.values()) System.out.println(c);
public static DefinitionDecodingException.Reason 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 nullCopyright © 2010-2016 ForgeRock AS. All Rights Reserved.