public static enum IlvRequestParameter.Comparator extends Enum<IlvRequestParameter.Comparator>
true
. The default value is EQUALS
.Enum Constant and Description |
---|
CONTAINS
The parameter value should contain with the expected value.
|
ENDS_WITH
The parameter value should be ended with one of listed expected
values,the value is separated by semicolon in the string.
|
EQUALS
The parameter value should equal with the expected value.
|
LIST
The parameter value should be one of list in the expected values,
the value is separated by semicolon in the string.
|
NO_SCRIPT
The parameter value should not contain the word script.
|
NOT_CONTAINS
The parameter value should not contain with the expected value.
|
STARTS_WITH
The parameter value should be started with one of listed expected
values,the value is separated by semicolon in the string.
|
Modifier and Type | Method and Description |
---|---|
static IlvRequestParameter.Comparator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IlvRequestParameter.Comparator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IlvRequestParameter.Comparator EQUALS
public static final IlvRequestParameter.Comparator CONTAINS
public static final IlvRequestParameter.Comparator NOT_CONTAINS
public static final IlvRequestParameter.Comparator STARTS_WITH
public static final IlvRequestParameter.Comparator ENDS_WITH
public static final IlvRequestParameter.Comparator LIST
public static final IlvRequestParameter.Comparator NO_SCRIPT
public static IlvRequestParameter.Comparator[] values()
for (IlvRequestParameter.Comparator c : IlvRequestParameter.Comparator.values()) System.out.println(c);
public static IlvRequestParameter.Comparator 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 null© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.