class ClassType

Holds a class type, if it exists This node may not always be in the tree

Public Instance Methods

value() click to toggle source

The type of the class

@return [String]

# File lib/steamd/nodes/class_type_node.rb, line 8
def value
  type = text_value.strip
  type.empty? ? nil : type
end