WikittyQuery@Deprecated public enum RestrictionName extends Enum<RestrictionName>
This enum contains all kind of restriction used to request content. It's used by parser to create lucene request from RestrictionDto.
| Enum Constant and Description |
|---|
AND
Deprecated.
|
ASSOCIATED
Deprecated.
|
BETWEEN
Deprecated.
|
CONTAINS
Deprecated.
|
ENDS_WITH
Deprecated.
|
EQUALS
Deprecated.
|
FALSE
Deprecated.
|
GREATER
Deprecated.
|
GREATER_OR_EQUAL
Deprecated.
|
IN
Deprecated.
|
IS_NOT_NULL
Deprecated.
|
IS_NULL
Deprecated.
|
KEYWORD
Deprecated.
|
LESS
Deprecated.
|
LESS_OR_EQUAL
Deprecated.
|
LIKE
Deprecated.
|
NOT
Deprecated.
|
NOT_EQUALS
Deprecated.
|
OR
Deprecated.
|
STARTS_WITH
Deprecated.
|
TRUE
Deprecated.
|
UNLIKE
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static RestrictionName |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static RestrictionName[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RestrictionName EQUALS
public static final RestrictionName NOT_EQUALS
public static final RestrictionName LIKE
public static final RestrictionName UNLIKE
public static final RestrictionName LESS
public static final RestrictionName LESS_OR_EQUAL
public static final RestrictionName GREATER
public static final RestrictionName GREATER_OR_EQUAL
public static final RestrictionName CONTAINS
public static final RestrictionName STARTS_WITH
public static final RestrictionName ENDS_WITH
public static final RestrictionName NOT
public static final RestrictionName AND
public static final RestrictionName OR
public static final RestrictionName BETWEEN
public static final RestrictionName TRUE
public static final RestrictionName FALSE
public static final RestrictionName ASSOCIATED
public static final RestrictionName IN
public static final RestrictionName KEYWORD
public static final RestrictionName IS_NULL
public static final RestrictionName IS_NOT_NULL
public static RestrictionName[] values()
for (RestrictionName c : RestrictionName.values()) System.out.println(c);
public static RestrictionName 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 © 2009-2012 CodeLutin. All Rights Reserved.