Enum AbstractPostponingComposer.CandidateDecision
- java.lang.Object
-
- java.lang.Enum<AbstractPostponingComposer.CandidateDecision>
-
- org.processmining.specpp.base.impls.AbstractPostponingComposer.CandidateDecision
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AbstractPostponingComposer.CandidateDecision>
- Enclosing class:
- AbstractPostponingComposer<C extends Candidate,I extends CompositionComponent<C>,R extends Result,L extends CandidateConstraint<C>>
public static enum AbstractPostponingComposer.CandidateDecision extends java.lang.Enum<AbstractPostponingComposer.CandidateDecision>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractPostponingComposer.CandidateDecisionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AbstractPostponingComposer.CandidateDecision[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Accept
public static final AbstractPostponingComposer.CandidateDecision Accept
-
Reject
public static final AbstractPostponingComposer.CandidateDecision Reject
-
Discard
public static final AbstractPostponingComposer.CandidateDecision Discard
-
Postpone
public static final AbstractPostponingComposer.CandidateDecision Postpone
-
-
Method Detail
-
values
public static AbstractPostponingComposer.CandidateDecision[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AbstractPostponingComposer.CandidateDecision c : AbstractPostponingComposer.CandidateDecision.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractPostponingComposer.CandidateDecision valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-