Class: Arel::Nodes::NamedWindow
- Defined in:
- lib/arel/nodes/window.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
Attributes inherited from Window
Instance Method Summary collapse
- #eql?(other) ⇒ Boolean (also: #==)
- #hash ⇒ Object
-
#initialize(name) ⇒ NamedWindow
constructor
A new instance of NamedWindow.
- #initialize_copy(other) ⇒ Object
Methods inherited from Window
Methods included from OrderPredications
Methods inherited from Node
#_caller, #and, #each, #not, #or, #to_sql
Methods included from FactoryMethods
#create_and, #create_false, #create_join, #create_on, #create_string_join, #create_table_alias, #create_true, #grouping, #lower
Constructor Details
#initialize(name) ⇒ NamedWindow
Returns a new instance of NamedWindow.
51 52 53 54 |
# File 'lib/arel/nodes/window.rb', line 51 def initialize name super() @name = name end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
49 50 51 |
# File 'lib/arel/nodes/window.rb', line 49 def name @name end |
Instance Method Details
#eql?(other) ⇒ Boolean Also known as: ==
65 66 67 |
# File 'lib/arel/nodes/window.rb', line 65 def eql? other super && self.name == other.name end |
#hash ⇒ Object
61 62 63 |
# File 'lib/arel/nodes/window.rb', line 61 def hash super ^ @name.hash end |
#initialize_copy(other) ⇒ Object
56 57 58 59 |
# File 'lib/arel/nodes/window.rb', line 56 def initialize_copy other super @name = other.name.clone end |