class RubyKpi::URI

The URI class

Attributes

value[R]

accessor

Public Class Methods

new(value) click to toggle source

constructor

# File lib/DataStructures.rb, line 15
def initialize(value)
  if value
    @value = value
  else
    @value = "http://www.nokia.com/NRC/M3/sib#any"
  end
end

Public Instance Methods

to_str() click to toggle source

to string

# File lib/DataStructures.rb, line 24
def to_str()
  return "<" + @value + ">"
end