Class: Gem::Resolv::LOC::Alt

Inherits:
Object
  • Object
show all
Defined in:
lib/rubygems/vendor/resolv/lib/resolv.rb

Overview

A Gem::Resolv::LOC::Alt

Constant Summary collapse

Regex =
/^([+-]*\d+\.*\d*)[m]$/

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(altitude) ⇒ Alt

Returns a new instance of Alt.



3334
3335
3336
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3334

def initialize(altitude)
  @altitude = altitude
end

Instance Attribute Details

#altitudeObject (readonly)

The raw altitude



3341
3342
3343
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3341

def altitude
  @altitude
end

Class Method Details

.create(arg) ⇒ Object

Creates a new LOC::Alt from arg which may be:

LOC::Alt

returns arg.

String

arg must match the LOC::Alt::Regex constant



3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3317

def self.create(arg)
  case arg
  when Alt
    return arg
  when String
    altitude = ''
    if Regex =~ arg
      altitude = [($1.to_f*(1e2))+(1e7)].pack("N")
    else
      raise ArgumentError.new("not a properly formed Alt string: " + arg)
    end
    return Alt.new(altitude)
  else
    raise ArgumentError.new("cannot interpret as Alt: #{arg.inspect}")
  end
end

Instance Method Details

#==(other) ⇒ Object

:nodoc:



3352
3353
3354
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3352

def ==(other) # :nodoc:
  return @altitude == other.altitude
end

#eql?(other) ⇒ Boolean

:nodoc:

Returns:

  • (Boolean)


3356
3357
3358
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3356

def eql?(other) # :nodoc:
  return self == other
end

#hashObject

:nodoc:



3360
3361
3362
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3360

def hash # :nodoc:
  return @altitude.hash
end

#inspectObject

:nodoc:



3348
3349
3350
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3348

def inspect # :nodoc:
  return "#<#{self.class} #{self}>"
end

#to_sObject

:nodoc:



3343
3344
3345
3346
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3343

def to_s # :nodoc:
  a = @altitude.unpack("N").join.to_i
  return ((a.to_f/1e2)-1e5).to_s + "m"
end