Class: Gem::Resolv::LOC::Alt
- Inherits:
-
Object
- Object
- Gem::Resolv::LOC::Alt
- 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
-
#altitude ⇒ Object
readonly
The raw altitude.
Class Method Summary collapse
-
.create(arg) ⇒ Object
Creates a new LOC::Alt from
arg
which may be:.
Instance Method Summary collapse
-
#==(other) ⇒ Object
:nodoc:.
-
#eql?(other) ⇒ Boolean
:nodoc:.
-
#hash ⇒ Object
:nodoc:.
-
#initialize(altitude) ⇒ Alt
constructor
A new instance of Alt.
-
#inspect ⇒ Object
:nodoc:.
-
#to_s ⇒ Object
:nodoc:.
Constructor Details
#initialize(altitude) ⇒ Alt
Returns a new instance of Alt.
3389 3390 3391 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3389 def initialize(altitude) @altitude = altitude end |
Instance Attribute Details
#altitude ⇒ Object (readonly)
The raw altitude
3396 3397 3398 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3396 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
3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3372 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:
3407 3408 3409 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3407 def ==(other) # :nodoc: return @altitude == other.altitude end |
#eql?(other) ⇒ Boolean
:nodoc:
3411 3412 3413 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3411 def eql?(other) # :nodoc: return self == other end |
#hash ⇒ Object
:nodoc:
3415 3416 3417 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3415 def hash # :nodoc: return @altitude.hash end |
#inspect ⇒ Object
:nodoc:
3403 3404 3405 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3403 def inspect # :nodoc: return "#<#{self.class} #{self}>" end |
#to_s ⇒ Object
:nodoc:
3398 3399 3400 3401 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 3398 def to_s # :nodoc: a = @altitude.unpack("N").join.to_i return ((a.to_f/1e2)-1e5).to_s + "m" end |