public enum QueryLogicalOperator extends Enum<QueryLogicalOperator>
| Modifier and Type | Field and Description |
|---|---|
protected String |
description |
protected String |
logicalOperator |
protected String |
operator |
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription() |
String |
getLogicalOperator() |
String |
getOperator() |
static Set<String> |
getOperators() |
static QueryLogicalOperator |
getQueryLogicalOperator(String key) |
static QueryLogicalOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryLogicalOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryLogicalOperator AND
public static final QueryLogicalOperator OR
public static final QueryLogicalOperator NOT
protected final String operator
protected final String logicalOperator
protected final String description
public static QueryLogicalOperator[] values()
for (QueryLogicalOperator c : QueryLogicalOperator.values()) System.out.println(c);
public static QueryLogicalOperator 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 String getOperator()
public String getLogicalOperator()
public String getDescription()
public static QueryLogicalOperator getQueryLogicalOperator(String key)
Copyright © 2022. All Rights Reserved.