public enum ManagedObjectOption extends Enum<ManagedObjectOption>
Enum Constant and Description |
---|
ADVANCED
Use this option to identify managed object types which should be
considered as advanced and should not be exposed by default in
client applications.
|
HIDDEN
Use this option to identify managed object types which must not
be directly exposed in client applications.
|
Modifier and Type | Method and Description |
---|---|
static ManagedObjectOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ManagedObjectOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ManagedObjectOption ADVANCED
public static final ManagedObjectOption HIDDEN
public static ManagedObjectOption[] values()
for (ManagedObjectOption c : ManagedObjectOption.values()) System.out.println(c);
public static ManagedObjectOption 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.