Class: OvirtSDK4::Core
- Defined in:
- lib/ovirtsdk4/types.rb,
lib/ovirtsdk4/types.rb
Instance Method Summary collapse
-
#==(other) ⇒ Object
Returns
true
ifself
andother
have the same attributes and values. -
#hash ⇒ Object
Generates a hash value for this object.
-
#index ⇒ Integer
Returns the value of the
index
attribute. -
#index=(value) ⇒ Object
Sets the value of the
index
attribute. -
#initialize(opts = {}) ⇒ Core
constructor
Creates a new instance of the Core class.
-
#socket ⇒ Integer
Returns the value of the
socket
attribute. -
#socket=(value) ⇒ Object
Sets the value of the
socket
attribute.
Methods included from Type
Constructor Details
#initialize(opts = {}) ⇒ Core
Creates a new instance of the OvirtSDK4::Core class.
2186 2187 2188 2189 2190 |
# File 'lib/ovirtsdk4/types.rb', line 2186 def initialize(opts = {}) super(opts) self.index = opts[:index] self.socket = opts[:socket] end |
Instance Method Details
#==(other) ⇒ Object
Returns true
if self
and other
have the same attributes and values.
2195 2196 2197 2198 2199 |
# File 'lib/ovirtsdk4/types.rb', line 2195 def ==(other) super && @index == other.index && @socket == other.socket end |
#hash ⇒ Object
Generates a hash value for this object.
2204 2205 2206 2207 2208 |
# File 'lib/ovirtsdk4/types.rb', line 2204 def hash super + @index.hash + @socket.hash end |
#index ⇒ Integer
Returns the value of the index
attribute.
2143 2144 2145 |
# File 'lib/ovirtsdk4/types.rb', line 2143 def index @index end |
#index=(value) ⇒ Object
Sets the value of the index
attribute.
2152 2153 2154 |
# File 'lib/ovirtsdk4/types.rb', line 2152 def index=(value) @index = value end |
#socket ⇒ Integer
Returns the value of the socket
attribute.
2161 2162 2163 |
# File 'lib/ovirtsdk4/types.rb', line 2161 def socket @socket end |
#socket=(value) ⇒ Object
Sets the value of the socket
attribute.
2170 2171 2172 |
# File 'lib/ovirtsdk4/types.rb', line 2170 def socket=(value) @socket = value end |