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