public static enum MojoCondition.Operator extends java.lang.Enum<MojoCondition.Operator>
Enum Constant and Description |
---|
GreaterThanOrEqual |
In |
LessThan |
Modifier and Type | Method and Description |
---|---|
static MojoCondition.Operator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MojoCondition.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MojoCondition.Operator LessThan
public static final MojoCondition.Operator GreaterThanOrEqual
public static final MojoCondition.Operator In
public static MojoCondition.Operator[] values()
for (MojoCondition.Operator c : MojoCondition.Operator.values()) System.out.println(c);
public static MojoCondition.Operator valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null