class Query::Criteria
- Query::Criteria
- Query::Query
- Reference
- Object
Included Modules
Defined in:
query.crConstructors
Instance Method Summary
-
#!=(other) : Query
Returns
true
if this object is not equal to other. - #<(other) : Query
- #<=(other) : Query
-
#==(other) : Query
Returns
false
(other can only be aValue
here). - #>(other) : Query
- #>=(other) : Query
- #in(other) : Query
- #inspect(io)
- #is_false : Query
- #is_not_false : Query
- #is_not_null : Query
- #is_not_true : Query
- #is_not_unknown : Query
- #is_null : Query
- #is_true : Query
- #is_unknown : Query
- #name : String
Instance methods inherited from class Query::Query
&(other) : Query
&,
^(other) : Query
^,
|(other) : Query
|,
and(other) : Query
and,
inspect(io)
inspect,
not : Query
not,
or(other) : Query
or,
xor(other) : Query
xor
Constructor Detail
Instance Method Detail
Description copied from class Object
Returns true
if this object is not equal to other.
By default this method is implemented as !(self == other)
so there's no need to override this unless there's a more efficient
way to do it.
Description copied from class Reference
Returns false
(other can only be a Value
here).