public enum OrgScopeType extends Enum<OrgScopeType>
Java class for OrgScopeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="OrgScopeType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="directDescendants"/>
<enumeration value="allDescendants"/>
<enumeration value="allAncestors"/>
<enumeration value="none"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ALL_ANCESTORS
All ancestors of the reference node, including ancestors of ancestors.
|
ALL_DESCENDANTS
All descendants of the reference node, including descendants of descendants.
|
DIRECT_DESCENDANTS
Direct descendants of the reference node.
|
NONE
No objects belong to the scope.
|
| Modifier and Type | Method and Description |
|---|---|
static OrgScopeType |
fromValue(String v) |
String |
value() |
static OrgScopeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrgScopeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrgScopeType DIRECT_DESCENDANTS
public static final OrgScopeType ALL_DESCENDANTS
public static final OrgScopeType ALL_ANCESTORS
public static final OrgScopeType NONE
public static OrgScopeType[] values()
for (OrgScopeType c : OrgScopeType.values()) System.out.println(c);
public static OrgScopeType 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 value()
public static OrgScopeType fromValue(String v)
Copyright © 2016 Evolveum. All rights reserved.