public static enum Expression.Type extends Enum<Expression.Type>
| Enum Constant and Description |
|---|
ADD |
AND |
ARRAY_LITERAL |
BINARY |
BOOLEAN |
BOOLEAN_FUNC_WRAPPER |
COMPARISON |
CONSTANT |
DOUBLE |
EQUALITY |
FIELD_ACCESS |
FIELD_REF |
FUNCTION |
INDEXED_ACCESS |
LOGICAL |
LONG |
MAP_LITERAL |
MESSAGE |
MULT |
NOT |
NUMERIC |
OR |
SIGNED |
STRING |
UNARY |
VAR_REF |
| Modifier and Type | Method and Description |
|---|---|
static Expression.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Expression.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Expression.Type ADD
public static final Expression.Type AND
public static final Expression.Type ARRAY_LITERAL
public static final Expression.Type BINARY
public static final Expression.Type BOOLEAN
public static final Expression.Type BOOLEAN_FUNC_WRAPPER
public static final Expression.Type COMPARISON
public static final Expression.Type CONSTANT
public static final Expression.Type DOUBLE
public static final Expression.Type EQUALITY
public static final Expression.Type FIELD_ACCESS
public static final Expression.Type FIELD_REF
public static final Expression.Type FUNCTION
public static final Expression.Type INDEXED_ACCESS
public static final Expression.Type LOGICAL
public static final Expression.Type LONG
public static final Expression.Type MAP_LITERAL
public static final Expression.Type MESSAGE
public static final Expression.Type MULT
public static final Expression.Type NOT
public static final Expression.Type NUMERIC
public static final Expression.Type OR
public static final Expression.Type SIGNED
public static final Expression.Type STRING
public static final Expression.Type UNARY
public static final Expression.Type VAR_REF
public static Expression.Type[] values()
for (Expression.Type c : Expression.Type.values()) System.out.println(c);
public static Expression.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 nullCopyright © 2012–2021 Graylog, Inc.. All rights reserved.