public static enum TwoParamsOpDynamicAnnotationExpression.Type extends Enum<TwoParamsOpDynamicAnnotationExpression.Type>
Enum Constant and Description |
---|
And
Logical And
|
Eq
Equals
|
Ge
Greater or equals than
|
Gt
Greater than
|
Le
Less or equals than
|
Lt
Less than
|
Ne
Not equals
|
Or
Logical Or
|
Modifier and Type | Method and Description |
---|---|
static TwoParamsOpDynamicAnnotationExpression.Type |
fromString(String value)
Creates the type(Operator) of a expressin
|
static TwoParamsOpDynamicAnnotationExpression.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TwoParamsOpDynamicAnnotationExpression.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TwoParamsOpDynamicAnnotationExpression.Type And
public static final TwoParamsOpDynamicAnnotationExpression.Type Or
public static final TwoParamsOpDynamicAnnotationExpression.Type Eq
public static final TwoParamsOpDynamicAnnotationExpression.Type Ne
public static final TwoParamsOpDynamicAnnotationExpression.Type Gt
public static final TwoParamsOpDynamicAnnotationExpression.Type Ge
public static final TwoParamsOpDynamicAnnotationExpression.Type Lt
public static final TwoParamsOpDynamicAnnotationExpression.Type Le
public static TwoParamsOpDynamicAnnotationExpression.Type[] values()
for (TwoParamsOpDynamicAnnotationExpression.Type c : TwoParamsOpDynamicAnnotationExpression.Type.values()) System.out.println(c);
public static TwoParamsOpDynamicAnnotationExpression.Type 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 static TwoParamsOpDynamicAnnotationExpression.Type fromString(String value)
value
- Value of the operator like "And" or "Eq"Copyright © 2013–2015 The Apache Software Foundation. All rights reserved.