public enum LogicalExprType extends Enum<LogicalExprType>
| Modifier and Type | Method and Description |
|---|---|
static LogicalExprType |
getByName(String str) |
static LogicalExprType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogicalExprType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogicalExprType AND
public static final LogicalExprType OR
public static final LogicalExprType NOT
public static LogicalExprType[] values()
for (LogicalExprType c : LogicalExprType.values()) System.out.println(c);
public static LogicalExprType 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 LogicalExprType getByName(String str)
Copyright © 2017–2019 JBoss by Red Hat. All rights reserved.