Enum FilterParam.FilterType
- java.lang.Object
-
- java.lang.Enum<FilterParam.FilterType>
-
- ru.moysklad.remap_1_2.utils.params.FilterParam.FilterType
-
- All Implemented Interfaces:
Serializable,Comparable<FilterParam.FilterType>
- Enclosing class:
- FilterParam
public static enum FilterParam.FilterType extends Enum<FilterParam.FilterType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description equalsequivalenceequivalence_leftequivalence_rightgreatergreater_or_equalslesserlesser_or_equalsnot_equals
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetStr()static FilterParam.FilterTypevalueOf(String name)Returns the enum constant of this type with the specified name.static FilterParam.FilterType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
equals
public static final FilterParam.FilterType equals
-
greater
public static final FilterParam.FilterType greater
-
lesser
public static final FilterParam.FilterType lesser
-
greater_or_equals
public static final FilterParam.FilterType greater_or_equals
-
lesser_or_equals
public static final FilterParam.FilterType lesser_or_equals
-
not_equals
public static final FilterParam.FilterType not_equals
-
equivalence
public static final FilterParam.FilterType equivalence
-
equivalence_left
public static final FilterParam.FilterType equivalence_left
-
equivalence_right
public static final FilterParam.FilterType equivalence_right
-
-
Method Detail
-
values
public static FilterParam.FilterType[] 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 (FilterParam.FilterType c : FilterParam.FilterType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FilterParam.FilterType 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
-
getStr
public String getStr()
-
-