Enum SOperatorType
- java.lang.Object
-
- java.lang.Enum<SOperatorType>
-
- org.bonitasoft.engine.core.operation.model.SOperatorType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SOperatorType>
public enum SOperatorType extends java.lang.Enum<SOperatorType>
- Author:
- Elias Ricken de Medeiros, Baptiste Mesta, Matthieu Chaffotte, Emmanuel Duchastenier
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSIGNMENTDELETIONJAVA_METHODXPATH_UPDATE_QUERY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SOperatorTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SOperatorType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASSIGNMENT
public static final SOperatorType ASSIGNMENT
-
JAVA_METHOD
public static final SOperatorType JAVA_METHOD
-
XPATH_UPDATE_QUERY
public static final SOperatorType XPATH_UPDATE_QUERY
-
DELETION
public static final SOperatorType DELETION
-
-
Method Detail
-
values
public static SOperatorType[] 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 (SOperatorType c : SOperatorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SOperatorType 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
-
-