class XPath::NullNodeAdapter

Public Instance Methods

attributes() click to toggle source
# File lib/xml/xpath.rb, line 2495
def attributes
  []
end
children() click to toggle source
# File lib/xml/xpath.rb, line 2485
def children
  []
end
each_following_siblings() click to toggle source
# File lib/xml/xpath.rb, line 2489
def each_following_siblings
end
each_preceding_siblings() click to toggle source
# File lib/xml/xpath.rb, line 2492
def each_preceding_siblings
end
index() click to toggle source
# File lib/xml/xpath.rb, line 2503
def index
  0
end
lang() click to toggle source
# File lib/xml/xpath.rb, line 2527
def lang
  nil
end
name_localpart() click to toggle source
# File lib/xml/xpath.rb, line 2511
def name_localpart
  nil
end
namespace_uri() click to toggle source
# File lib/xml/xpath.rb, line 2519
def namespace_uri
  nil
end
namespaces() click to toggle source
# File lib/xml/xpath.rb, line 2499
def namespaces
  []
end
node() click to toggle source
# File lib/xml/xpath.rb, line 2473
def node
  self
end
node_type() click to toggle source
# File lib/xml/xpath.rb, line 2507
def node_type
  nil
end
parent() click to toggle source
# File lib/xml/xpath.rb, line 2481
def parent
  nil
end
qualified_name() click to toggle source
# File lib/xml/xpath.rb, line 2515
def qualified_name
  name_localpart
end
root() click to toggle source
# File lib/xml/xpath.rb, line 2477
def root
  nil
end
select_id(*ids) click to toggle source
# File lib/xml/xpath.rb, line 2531
def select_id(*ids)
  raise XPath::Error, "selection by ID is not supported"
end
string_value() click to toggle source
# File lib/xml/xpath.rb, line 2523
def string_value
  ''
end