Enum Action.ActionTrigger
- java.lang.Object
-
- java.lang.Enum<Action.ActionTrigger>
-
- com.netgrif.application.engine.petrinet.domain.dataset.logic.action.Action.ActionTrigger
-
- All Implemented Interfaces:
groovy.lang.GroovyObject,java.io.Serializable,java.lang.Comparable<Action.ActionTrigger>
- Enclosing class:
- Action
public static enum Action.ActionTrigger extends java.lang.Enum<Action.ActionTrigger> implements groovy.lang.GroovyObject
-
-
Field Summary
Fields Modifier and Type Field Description static Action.ActionTriggerMAX_VALUEstatic Action.ActionTriggerMIN_VALUE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Action.ActionTrigger$INIT(java.lang.Object... para)static Action.ActionTriggerfromString(java.lang.String val)groovy.lang.MetaClassgetMetaClass()Action.ActionTriggernext()Action.ActionTriggerprevious()voidsetMetaClass(groovy.lang.MetaClass mc)static Action.ActionTriggervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Action.ActionTrigger[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GET
public static final Action.ActionTrigger GET
-
SET
public static final Action.ActionTrigger SET
-
-
Field Detail
-
MIN_VALUE
public static final Action.ActionTrigger MIN_VALUE
-
MAX_VALUE
public static final Action.ActionTrigger MAX_VALUE
-
-
Method Detail
-
values
public static Action.ActionTrigger[] 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 (Action.ActionTrigger c : Action.ActionTrigger.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Action.ActionTrigger 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
-
getMetaClass
public groovy.lang.MetaClass getMetaClass()
- Specified by:
getMetaClassin interfacegroovy.lang.GroovyObject
-
setMetaClass
public void setMetaClass(groovy.lang.MetaClass mc)
- Specified by:
setMetaClassin interfacegroovy.lang.GroovyObject
-
fromString
public static Action.ActionTrigger fromString(java.lang.String val)
-
next
public Action.ActionTrigger next()
-
previous
public Action.ActionTrigger previous()
-
$INIT
public static final Action.ActionTrigger $INIT(java.lang.Object... para)
-
-