net.sf.dynamicreports.adhoc.configuration
Enum AdhocValueOperator
java.lang.Object
java.lang.Enum<AdhocValueOperator>
net.sf.dynamicreports.adhoc.configuration.AdhocValueOperator
- All Implemented Interfaces:
- Serializable, Comparable<AdhocValueOperator>
public enum AdhocValueOperator
- extends Enum<AdhocValueOperator>
- Author:
- Ricardo Mariaca (dynamicreports@gmail.com)
EQUAL
public static final AdhocValueOperator EQUAL
UNEQUAL
public static final AdhocValueOperator UNEQUAL
IN
public static final AdhocValueOperator IN
NOT_IN
public static final AdhocValueOperator NOT_IN
LIKE
public static final AdhocValueOperator LIKE
NOT_LIKE
public static final AdhocValueOperator NOT_LIKE
START_WITH
public static final AdhocValueOperator START_WITH
NOT_START_WITH
public static final AdhocValueOperator NOT_START_WITH
END_WITH
public static final AdhocValueOperator END_WITH
NOT_END_WITH
public static final AdhocValueOperator NOT_END_WITH
GREATER
public static final AdhocValueOperator GREATER
GREATER_OR_EQUAL
public static final AdhocValueOperator GREATER_OR_EQUAL
SMALLER
public static final AdhocValueOperator SMALLER
SMALLER_OR_EQUAL
public static final AdhocValueOperator SMALLER_OR_EQUAL
BETWEEN
public static final AdhocValueOperator BETWEEN
NOT_BETWEEN
public static final AdhocValueOperator NOT_BETWEEN
IS_NOT_NULL
public static final AdhocValueOperator IS_NOT_NULL
IS_NULL
public static final AdhocValueOperator IS_NULL
values
public static AdhocValueOperator[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (AdhocValueOperator c : AdhocValueOperator.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static AdhocValueOperator valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright © 2010-2012. All Rights Reserved.