class Mingle::MingleEnum

Public Instance Methods

==( other ) click to toggle source
# File lib/mingle.rb, line 2106
def ==( other )
    other.is_a?( MingleEnum ) && 
        other.type == @type &&
        other.value == @value
end
to_s() click to toggle source
# File lib/mingle.rb, line 2101
def to_s
    "#{@type.external_form}.#{@value.external_form}"
end