new

new( ie_hack=false ) Class Public methods Prints out the XML document with no formatting â except if id_hack is set. ie_hack If set to true, then inserts whitespace before the close of an empty tag, so that IE's bad XML parser doesn't choke.

reset

reset() Class Public methods Reset the authoritative instance of the command manager.

to_json

to_json(state = nil) Instance Public methods Returns a JSON string containing a JSON array, that is generated from this Array instance. state is a JSON::State object, that can also be used to configure the produced JSON string output further.

itemcget_strict

itemcget_strict(tagOrId, option) Instance Public methods Also aliased as: __itemcget_strict

upload

upload() Instance Public methods

base_name

base_name() Instance Public methods Base name of this file name

dataType

dataType() Instance Public methods VARIANT dataType the data type of the node

determine_default_helper_class

determine_default_helper_class(name) Instance Public methods

hour

hour() Instance Public methods Alias for: hours

peek_values

e.peek_values â array Instance Public methods Returns the next object as an array, similar to #next_values, but doesn't move the internal position forward. If the position is already at the end, StopIteration is raised. Example o = Object.new def o.each yield yield 1 yield 1, 2 end e = o.to_enum p e.peek_values #=> [] e.next p e.peek_values #=> [1] p e.peek_values #=> [1] e.next p e.peek_values #=> [1, 2] e.next p e.peek_values # raises StopIter