class Trestle::Navigation::NullGroup

Public Instance Methods

<=>(other) click to toggle source
# File lib/trestle/navigation/group.rb, line 78
def <=>(other)
  -1
end
==(other) click to toggle source
# File lib/trestle/navigation/group.rb, line 62
def ==(other)
  other.is_a?(NullGroup)
end
eql?(other) click to toggle source
# File lib/trestle/navigation/group.rb, line 66
def eql?(other)
  other.is_a?(NullGroup)
end
hash() click to toggle source
# File lib/trestle/navigation/group.rb, line 70
def hash
  NullGroup.hash
end
id() click to toggle source
# File lib/trestle/navigation/group.rb, line 74
def id
  nil
end
merge(other) click to toggle source
# File lib/trestle/navigation/group.rb, line 82
def merge(other)
  self
end
present?() click to toggle source
# File lib/trestle/navigation/group.rb, line 58
def present?
  false
end