Class: Nokogiri::XML::AttributeDecl
- Defined in:
- lib/nokogiri/xml/attribute_decl.rb,
lib/nokogiri/ffi/xml/attribute_decl.rb,
ext/nokogiri/xml_attribute_decl.c
Overview
:stopdoc:
Constant Summary
Constants inherited from Node
Node::ATTRIBUTE_DECL, Node::ATTRIBUTE_NODE, Node::CDATA_SECTION_NODE, Node::COMMENT_NODE, Node::DOCB_DOCUMENT_NODE, Node::DOCUMENT_FRAG_NODE, Node::DOCUMENT_NODE, Node::DOCUMENT_TYPE_NODE, Node::DTD_NODE, Node::ELEMENT_DECL, Node::ELEMENT_NODE, Node::ENTITY_DECL, Node::ENTITY_NODE, Node::ENTITY_REF_NODE, Node::HTML_DOCUMENT_NODE, Node::NAMESPACE_DECL, Node::NOTATION_NODE, Node::PI_NODE, Node::TEXT_NODE, Node::XINCLUDE_END, Node::XINCLUDE_START
Instance Attribute Summary
Attributes inherited from Node
Instance Method Summary collapse
-
#attribute_type ⇒ Object
The attribute_type for this AttributeDecl.
-
#default ⇒ Object
The default value.
-
#enumeration ⇒ Object
An enumeration of possible values.
- #inspect ⇒ Object
Methods inherited from Node
#<<, #<=>, #==, #[], #[]=, #accept, #add_child, #add_namespace, #add_namespace_definition, #add_next_sibling, #add_previous_sibling, #after, #ancestors, #at, #at_css, #at_xpath, #attribute, #attribute_nodes, #attribute_with_ns, #attributes, #before, #blank?, #cdata?, #child, #children, #clone, #comment?, #content, #content=, #create_external_subset, #create_internal_subset, #css, #css_path, #decorate!, #default_namespace=, #description, #document, #dup, #each, #element?, #encode_special_chars, #external_subset, #fragment, #has_attribute?, #html?, #initialize, #inner_html, #inner_html=, #inner_text, #internal_subset, #key?, #keys, #line, #matches?, #name, #name=, #namespace, #namespace=, #namespace_definitions, #namespaced_key?, #namespaces, new, #next, #next_sibling, #node_name, #node_name=, node_properties, #node_type, #parent, #parent=, #path, #pointer_id, #previous, #previous_sibling, #read_only?, #remove, #remove_attribute, #replace, #search, #serialize, #set_attribute, #swap, #text, #text?, #to_html, #to_s, #to_xhtml, #to_xml, #traverse, #type, #unlink, #values, wrap, #write_html_to, #write_to, #write_xhtml_to, #write_xml_to, #xml?, #xpath
Methods included from PP::Node
Constructor Details
This class inherits a constructor from Nokogiri::XML::Node
Instance Method Details
#attribute_type ⇒ Object
The attribute_type for this AttributeDecl
9 10 11 |
# File 'ext/nokogiri/xml_attribute_decl.c', line 9 def attribute_type cstruct[:atype] end |
#default ⇒ Object
The default value
22 23 24 |
# File 'ext/nokogiri/xml_attribute_decl.c', line 22 def default cstruct[:default_value] end |
#enumeration ⇒ Object
An enumeration of possible values
37 38 39 40 41 42 43 44 45 46 47 |
# File 'ext/nokogiri/xml_attribute_decl.c', line 37 def enumeration list = [] return list if cstruct[:tree].null? head = LibXML::XmlEnumeration.new cstruct[:tree] loop do list << head[:name] break if head[:next].null? head = LibXML::XmlEnumeration.new head[:next] end list end |
#inspect ⇒ Object
13 14 15 |
# File 'lib/nokogiri/xml/attribute_decl.rb', line 13 def inspect "#<#{self.class.name}:#{sprintf("0x%x", object_id)} #{to_s.inspect}>" end |