Class: Arel::Nodes::BindParam
Do not use. This class is for internal use only.
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
Node
|
|
Instance Chain:
self,
Node ,
::Arel::FactoryMethods
|
|
Inherits: |
Arel::Nodes::Node
|
Defined in: | activerecord/lib/arel/nodes/bind_param.rb |
Class Method Summary
- .new(value) ⇒ BindParam constructor
Instance Attribute Summary
- #infinite? ⇒ Boolean readonly
- #nil? ⇒ Boolean readonly
- #unboundable? ⇒ Boolean readonly
- #value readonly
Node
- Inherited
Instance Method Summary
-
#==(other)
Alias for #eql?.
- #eql?(other) ⇒ Boolean (also: #==)
- #hash
- #value_before_type_cast
Node
- Inherited
#and | Factory method to create an And node. |
#fetch_attribute, #invert, | |
#not | Factory method to create a |
#or | |
#to_sql | FIXME: this method should go away. |
::Arel::FactoryMethods
- Included
#cast, #coalesce, #create_and, #create_false, #create_join, #create_on, #create_string_join, #create_table_alias, #create_true, #grouping, | |
#lower | Create a LOWER() function. |
Constructor Details
.new(value) ⇒ BindParam
Instance Attribute Details
#infinite? ⇒ Boolean
(readonly)
[ GitHub ]
#nil? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'activerecord/lib/arel/nodes/bind_param.rb', line 23
def nil? value.nil? end
#unboundable? ⇒ Boolean
(readonly)
[ GitHub ]
#value (readonly)
[ GitHub ]# File 'activerecord/lib/arel/nodes/bind_param.rb', line 6
attr_reader :value
Instance Method Details
#==(other)
Alias for #eql?.
# File 'activerecord/lib/arel/nodes/bind_param.rb', line 21
alias :== :eql?
#eql?(other) ⇒ Boolean
Also known as: #==
#hash
[ GitHub ]# File 'activerecord/lib/arel/nodes/bind_param.rb', line 13
def hash [self.class, self.value].hash end