public enum SynchronizationPolicyDecisionType extends Enum<SynchronizationPolicyDecisionType>
Java class for SynchronizationPolicyDecisionType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="SynchronizationPolicyDecisionType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="add"/>
<enumeration value="delete"/>
<enumeration value="keep"/>
<enumeration value="unlink"/>
<enumeration value="broken"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ADD
New account that is going to be added (and linked).
|
BROKEN
The account is not usable.
|
DELETE
Existing account that is going to be deleted (and unlinked).
|
KEEP
Existing account that is kept as it is (remains linked).
|
UNLINK
Existing account that is going to be unlinked (but NOT deleted).
|
| Modifier and Type | Method and Description |
|---|---|
static SynchronizationPolicyDecisionType |
fromValue(String v) |
String |
value() |
static SynchronizationPolicyDecisionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SynchronizationPolicyDecisionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SynchronizationPolicyDecisionType ADD
public static final SynchronizationPolicyDecisionType DELETE
public static final SynchronizationPolicyDecisionType KEEP
public static final SynchronizationPolicyDecisionType UNLINK
public static final SynchronizationPolicyDecisionType BROKEN
public static SynchronizationPolicyDecisionType[] values()
for (SynchronizationPolicyDecisionType c : SynchronizationPolicyDecisionType.values()) System.out.println(c);
public static SynchronizationPolicyDecisionType 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 SynchronizationPolicyDecisionType fromValue(String v)
Copyright © 2016 Evolveum. All rights reserved.