public enum LevelEvaluationStrategyType extends Enum<LevelEvaluationStrategyType>
Java class for LevelEvaluationStrategyType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="LevelEvaluationStrategyType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="allMustApprove"/>
<enumeration value="firstDecides"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ALL_MUST_AGREE
All approvers at a particular level must approve the operation.
|
FIRST_DECIDES
First approver that votes will decide the whole level (either by approving or by rejecting).
|
| Modifier and Type | Method and Description |
|---|---|
static LevelEvaluationStrategyType |
fromValue(String v) |
String |
value() |
static LevelEvaluationStrategyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LevelEvaluationStrategyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LevelEvaluationStrategyType ALL_MUST_AGREE
public static final LevelEvaluationStrategyType FIRST_DECIDES
public static LevelEvaluationStrategyType[] values()
for (LevelEvaluationStrategyType c : LevelEvaluationStrategyType.values()) System.out.println(c);
public static LevelEvaluationStrategyType 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 LevelEvaluationStrategyType fromValue(String v)
Copyright © 2016 Evolveum. All rights reserved.