class Nis::Unit::Status

@attr [String] value

Attributes

value[RW]

Public Class Methods

new(value) click to toggle source
# File lib/nis/unit/status.rb, line 6
def initialize(value)
  @value = value
end

Public Instance Methods

==(other) click to toggle source

@return [Boolean]

# File lib/nis/unit/status.rb, line 31
def ==(other)
  @value == other.value
end
to_s() click to toggle source

@return [String]

# File lib/nis/unit/status.rb, line 26
def to_s
  @value
end