public enum AssignmentPolicyEnforcementType extends Enum<AssignmentPolicyEnforcementType>
Java class for AssignmentPolicyEnforcementType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AssignmentPolicyEnforcementType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="none"/> <enumeration value="positive"/> <enumeration value="full"/> <enumeration value="relative"/> </restriction> </simpleType>
Enum Constant and Description |
---|
FULL
Full enforcement
|
NONE
No enforcement.
|
POSITIVE
Assignements will be enforced only in a positive manner.
|
RELATIVE
Relative enforcement
|
Modifier and Type | Method and Description |
---|---|
static AssignmentPolicyEnforcementType |
fromValue(String v) |
String |
value() |
static AssignmentPolicyEnforcementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AssignmentPolicyEnforcementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssignmentPolicyEnforcementType NONE
public static final AssignmentPolicyEnforcementType POSITIVE
public static final AssignmentPolicyEnforcementType FULL
public static final AssignmentPolicyEnforcementType RELATIVE
public static AssignmentPolicyEnforcementType[] values()
for (AssignmentPolicyEnforcementType c : AssignmentPolicyEnforcementType.values()) System.out.println(c);
public static AssignmentPolicyEnforcementType 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 AssignmentPolicyEnforcementType fromValue(String v)
Copyright © 2016 Evolveum. All rights reserved.