Package com.axelor.meta.schema.views
Enum Search.SearchSelectInputMatchStyle
- java.lang.Object
-
- java.lang.Enum<Search.SearchSelectInputMatchStyle>
-
- com.axelor.meta.schema.views.Search.SearchSelectInputMatchStyle
-
- All Implemented Interfaces:
Serializable
,Comparable<Search.SearchSelectInputMatchStyle>
- Enclosing class:
- Search
public static enum Search.SearchSelectInputMatchStyle extends Enum<Search.SearchSelectInputMatchStyle>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTAINS
ENDS_WITH
EQUALS
GREATER_OR_EQUALS
GREATER_THAN
LESS_OR_EQUAL
LESS_THAN
NOT_EQUALS
STARTS_WITH
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Search.SearchSelectInputMatchStyle
valueOf(String name)
Returns the enum constant of this type with the specified name.static Search.SearchSelectInputMatchStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTAINS
public static final Search.SearchSelectInputMatchStyle CONTAINS
-
STARTS_WITH
public static final Search.SearchSelectInputMatchStyle STARTS_WITH
-
ENDS_WITH
public static final Search.SearchSelectInputMatchStyle ENDS_WITH
-
EQUALS
public static final Search.SearchSelectInputMatchStyle EQUALS
-
NOT_EQUALS
public static final Search.SearchSelectInputMatchStyle NOT_EQUALS
-
LESS_THAN
public static final Search.SearchSelectInputMatchStyle LESS_THAN
-
GREATER_THAN
public static final Search.SearchSelectInputMatchStyle GREATER_THAN
-
LESS_OR_EQUAL
public static final Search.SearchSelectInputMatchStyle LESS_OR_EQUAL
-
GREATER_OR_EQUALS
public static final Search.SearchSelectInputMatchStyle GREATER_OR_EQUALS
-
-
Method Detail
-
values
public static Search.SearchSelectInputMatchStyle[] 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 (Search.SearchSelectInputMatchStyle c : Search.SearchSelectInputMatchStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Search.SearchSelectInputMatchStyle 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
-
-