Class: Nokogiri::XML::EntityDecl
- Defined in:
- lib/nokogiri/xml/entity_decl.rb,
lib/nokogiri/ffi/xml/entity_decl.rb,
ext/nokogiri/xml_entity_decl.c
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
-
#content ⇒ Object
Get the content.
-
#content ⇒ Object
Get the entity type.
-
#external_id ⇒ Object
Get the external identifier for PUBLIC.
- #inspect ⇒ Object
-
#original_content ⇒ Object
Get the original_content before ref substitution.
-
#system_id ⇒ Object
Get the URI for a SYSTEM or PUBLIC Entity.
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=, #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
#content ⇒ Object
Get the content
25 26 27 |
# File 'ext/nokogiri/xml_entity_decl.c', line 25 def content cstruct[:content] end |
#content ⇒ Object
Get the entity type
41 42 43 |
# File 'ext/nokogiri/xml_entity_decl.c', line 41 def entity_type cstruct[:etype] end |
#external_id ⇒ Object
Get the external identifier for PUBLIC
55 56 57 |
# File 'ext/nokogiri/xml_entity_decl.c', line 55 def external_id cstruct[:external_id] end |
#inspect ⇒ Object
10 11 12 |
# File 'lib/nokogiri/xml/entity_decl.rb', line 10 def inspect "#<#{self.class.name}:#{sprintf("0x%x", object_id)} #{to_s.inspect}>" end |
#original_content ⇒ Object
Get the original_content before ref substitution
9 10 11 |
# File 'ext/nokogiri/xml_entity_decl.c', line 9 def original_content cstruct[:orig] end |
#system_id ⇒ Object
Get the URI for a SYSTEM or PUBLIC Entity
71 72 73 |
# File 'ext/nokogiri/xml_entity_decl.c', line 71 def system_id cstruct[:system_id] end |