public enum RestrictionType extends Enum<RestrictionType>
Enum Constant and Description |
---|
DATA_TABLE_FILTER |
END_GROUP |
EQUALS |
GREATER_EQUALS_THAN |
GREATER_THAN |
IN |
LESS_EQUALS_THAN |
LESS_THAN |
LIKE |
NOT_EQUALS |
NOT_IN |
NOT_LIKE |
NOT_NULL |
NULL |
OR |
QUERY_STRING |
START_GROUP |
Modifier and Type | Method and Description |
---|---|
String |
getAcronym() |
static RestrictionType |
getByAcronym(String acronym) |
String |
getSymbol() |
boolean |
isIgnoreParameter() |
static RestrictionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RestrictionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RestrictionType EQUALS
public static final RestrictionType NOT_EQUALS
public static final RestrictionType GREATER_THAN
public static final RestrictionType LESS_THAN
public static final RestrictionType GREATER_EQUALS_THAN
public static final RestrictionType LESS_EQUALS_THAN
public static final RestrictionType LIKE
public static final RestrictionType NOT_LIKE
public static final RestrictionType IN
public static final RestrictionType NOT_IN
public static final RestrictionType NULL
public static final RestrictionType NOT_NULL
public static final RestrictionType DATA_TABLE_FILTER
public static final RestrictionType OR
public static final RestrictionType START_GROUP
public static final RestrictionType QUERY_STRING
public static final RestrictionType END_GROUP
public static RestrictionType[] values()
for (RestrictionType c : RestrictionType.values()) System.out.println(c);
public static RestrictionType 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 RestrictionType getByAcronym(String acronym)
public String getSymbol()
public boolean isIgnoreParameter()
public String getAcronym()
Copyright © 2015. All rights reserved.