Enum FilterTypeTextOperatorsEnum
- java.lang.Object
-
- java.lang.Enum<FilterTypeTextOperatorsEnum>
-
- net.sf.jasperreports.components.sort.FilterTypeTextOperatorsEnum
-
- All Implemented Interfaces:
Serializable,Comparable<FilterTypeTextOperatorsEnum>,NamedEnum
public enum FilterTypeTextOperatorsEnum extends Enum<FilterTypeTextOperatorsEnum> implements NamedEnum
- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTAINSDOES_NOT_CONTAINDOES_NOT_END_WITHDOES_NOT_START_WITHENDS_WITHEQUALSIS_NOT_EQUAL_TOIS_NOT_NULLIS_NULLSTARTS_WITH
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FilterTypeTextOperatorsEnumgetByEnumConstantName(String name)static FilterTypeTextOperatorsEnumgetByName(String name)StringgetName()static FilterTypeTextOperatorsEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static FilterTypeTextOperatorsEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUALS
public static final FilterTypeTextOperatorsEnum EQUALS
-
IS_NOT_EQUAL_TO
public static final FilterTypeTextOperatorsEnum IS_NOT_EQUAL_TO
-
CONTAINS
public static final FilterTypeTextOperatorsEnum CONTAINS
-
DOES_NOT_CONTAIN
public static final FilterTypeTextOperatorsEnum DOES_NOT_CONTAIN
-
STARTS_WITH
public static final FilterTypeTextOperatorsEnum STARTS_WITH
-
DOES_NOT_START_WITH
public static final FilterTypeTextOperatorsEnum DOES_NOT_START_WITH
-
ENDS_WITH
public static final FilterTypeTextOperatorsEnum ENDS_WITH
-
DOES_NOT_END_WITH
public static final FilterTypeTextOperatorsEnum DOES_NOT_END_WITH
-
IS_NULL
public static final FilterTypeTextOperatorsEnum IS_NULL
-
IS_NOT_NULL
public static final FilterTypeTextOperatorsEnum IS_NOT_NULL
-
-
Method Detail
-
values
public static FilterTypeTextOperatorsEnum[] 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 (FilterTypeTextOperatorsEnum c : FilterTypeTextOperatorsEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FilterTypeTextOperatorsEnum 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 nameNullPointerException- if the argument is null
-
getByName
public static FilterTypeTextOperatorsEnum getByName(String name)
-
getByEnumConstantName
public static FilterTypeTextOperatorsEnum getByEnumConstantName(String name)
-
-