Class: Ice::CompressBatch

Inherits:
Object
  • Object
show all
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}

Class Method Summary collapse

Instance Method Summary collapse

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

Class Method Details

._enumeratorsObject



44
45
46
# File 'ruby/Ice/CompressBatch.rb', line 44

def CompressBatch._enumerators
    @@_enumerators
end

.each(&block) ⇒ Object



34
35
36
# File 'ruby/Ice/CompressBatch.rb', line 34

def CompressBatch.each(&block)
    @@_enumerators.each_value(&block)
end

.from_int(val) ⇒ Object



13
14
15
# File 'ruby/Ice/CompressBatch.rb', line 13

def CompressBatch.from_int(val)
    @@_enumerators[val]
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

#hashObject



30
31
32
# File 'ruby/Ice/CompressBatch.rb', line 30

def hash
    @value.hash
end

#to_iObject



21
22
23
# File 'ruby/Ice/CompressBatch.rb', line 21

def to_i
    @value
end

#to_sObject



17
18
19
# File 'ruby/Ice/CompressBatch.rb', line 17

def to_s
    @name
end