class SimpleXml::AnyValue

Used to represent 'any value' in criteria that require a value be present but don't specify any restrictions on that value

Attributes

type[R]

Public Class Methods

new(type='ANYNonNull') click to toggle source
# File lib/model/types.rb, line 7
def initialize(type='ANYNonNull')
  @type = type 
end

Public Instance Methods

to_model() click to toggle source
# File lib/model/types.rb, line 11
def to_model
  HQMF::AnyValue.new(@type)
end