Class: Ice::CompressBatch
- Inherits:
-
Object
- Object
- Ice::CompressBatch
- Includes:
- Comparable
- Defined in:
- ruby/Ice/CompressBatch.rb
Constant Summary collapse
- Yes =
CompressBatch.new("Yes", 0)
- No =
CompressBatch.new("No", 1)
- BasedOnProxy =
CompressBatch.new("BasedOnProxy", 2)
- @@_enumerators =
{0=>Yes, 1=>No, 2=>BasedOnProxy}
Instance Method Summary collapse
- #<=>(other) ⇒ Object
- #hash ⇒ Object
-
#initialize(name, value) ⇒ CompressBatch
constructor
A new instance of CompressBatch.
- #to_i ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(name, value) ⇒ CompressBatch
Returns a new instance of CompressBatch.
8 9 10 11 |
# File 'ruby/Ice/CompressBatch.rb', line 8 def initialize(name, value) @name = name @value = value end |
Instance Method Details
#<=>(other) ⇒ Object
25 26 27 28 |
# File 'ruby/Ice/CompressBatch.rb', line 25 def <=>(other) other.is_a?(CompressBatch) or raise ArgumentError, "value must be a CompressBatch" @value <=> other.to_i end |
#hash ⇒ Object
30 31 32 |
# File 'ruby/Ice/CompressBatch.rb', line 30 def hash @value.hash end |
#to_i ⇒ Object
21 22 23 |
# File 'ruby/Ice/CompressBatch.rb', line 21 def to_i @value end |
#to_s ⇒ Object
17 18 19 |
# File 'ruby/Ice/CompressBatch.rb', line 17 def to_s @name end |