abstract class Jennifer::QueryBuilder::LogicOperator
- Jennifer::QueryBuilder::LogicOperator
- Reference
- Object
Included Modules
Direct Known Subclasses
Defined in:
jennifer/query_builder/logic_operator.crConstructors
Instance Method Summary
-
#==(other)
Returns
false
(other can only be aValue
here). - #alias_tables(aliases)
- #as_sql(generator)
- #as_sql
- #change_table(old_name, new_name)
- #eql?(other : LogicOperator)
- #eql?(other)
- #filterable?
- #lhs : Operandable
- #operator
- #rhs : Operandable
- #set_relation(table, name)
- #sql_args : Array(DBAny)
-
#to_s(io : IO)
Appends a short String representation of this object which includes its class name and its object address.
Instance methods inherited from module Jennifer::QueryBuilder::LogicOperator::Operators
&(other : Criteria)&(other : Operandable) &, xor(other : Criteria)
xor(other : Operandable) xor, |(other : Criteria)
|(other : Operandable) |
Constructor Detail
Instance Method Detail
def ==(other)
#
Description copied from class Reference
Returns false
(other can only be a Value
here).
def to_s(io : IO)
#
Description copied from class Reference
Appends a short String representation of this object which includes its class name and its object address.
class Person
def initialize(@name : String, @age : Int32)
end
end
Person.new("John", 32).to_s # => #<Person:0x10a199f20>