JavaScript is disabled on your browser.
Enum Constant Summary
Enum Constants
Returns case sensitive (exact match - 'open').
Returns exact (= 'open' or 'Open') case insensitive.
Returns exact (= 'open') case sensitive search.
Returns results greater or equal of given input.
Returns results greater than given input (other value greater than - '10').
Returns exact case insensitive (wildcards - '%open%').
in operator will check the value1 is present or not in list of right term.
Returns results less or equal of given input.
Returns case sensitive (wildcards - '%open%').
Returns results less than given input (other value less than - '10').
Returns results not matched with given input (other than - 'open').
Returns results not matched with exact case insensitive (wildcards -
'%open%').
not in operator will check the value1 is not present in list of right term.
Returns results not matched with case sensitive (wildcards - '%open%').
Method Summary
All Methods Static Methods Instance Methods Concrete Methods
Returns the enum constant of this class with the specified name.
Returns an array containing the constants of this enum class, in
the order they are declared.
Methods inherited from class java.lang.Enum
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
Enum Constant Details
LIKE
Returns case sensitive (wildcards - '%open%').
e.g.: [('input', 'like', 'open')] => open, opensource, openerp, Odooopenerp
NOT_LIKE
Returns results not matched with case sensitive (wildcards - '%open%').
e.g.: [('input', 'not like', 'open')] => Openerp, Opensource, Open, Odoo,
odoo, OdooOpenerp
EQ_LIKE
Returns exact (= 'open') case sensitive search.
e.g.: [('name', '=like', 'open')] => open
I_LIKE
Returns exact case insensitive (wildcards - '%open%').
e.g.: [('name', 'ilike', 'open')] => Openerp, openerp, Opensource,
opensource, Open, open, Odooopenerp, OdooOpenerp
NOT_I_LIKE
Returns results not matched with exact case insensitive (wildcards -
'%open%').
e.g.: [('name', 'not ilike', 'open')] => Odoo, odoo
EQ_I_LIKE
Returns exact (= 'open' or 'Open') case insensitive.
e.g.: [('name', '=ilike', 'open')] => Open, open
IN
in operator will check the value1 is present or not in list of right term.
NOT_IN
not in operator will check the value1 is not present in list of right term.
EQ
Returns case sensitive (exact match - 'open').
e.g.: [('input', '=', 'open')] => open
NE
Returns results not matched with given input (other than - 'open').
e.g.: [('input', '!=', 'open')] => "other than open records"
GT
Returns results greater than given input (other value greater than - '10').
e.g.: [('input', '>', '10')] => 11, 12, 13
GE
Returns results greater or equal of given input.
e.g.: [('input', '>=', '10')] => 10, 11, 12, 13
LT
Returns results less than given input (other value less than - '10').
e.g.: [('input', '<', '10')] => 9, 8, 7
LE
Returns results less or equal of given input.
e.g.: [('input', '<=', '10')] => 10, 9, 8, 7
Method Details
values
Returns an array containing the constants of this enum class, in
the order they are declared.
Returns:
an array containing the constants of this enum class, in the order they are declared
valueOf
Returns the enum constant of this class with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this class. (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 class has no constant with the specified name
NullPointerException
- if the argument is null