Java Doc for PullProvider.java in  » XML » XPath-Saxon » net » sf » saxon » pull » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » XML » XPath Saxon » net.sf.saxon.pull 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


net.sf.saxon.pull.PullProvider

All known Subclasses:   net.sf.saxon.pull.PullFilter,  net.sf.saxon.tinytree.TinyTreeWalker,  net.sf.saxon.pull.VirtualTreeWalker,  net.sf.saxon.pull.PullFromIterator,  net.sf.saxon.pull.TreeWalker,
PullProvider
public interface PullProvider (Code)
PullProvider is Saxon's pull-based interface for reading XML documents. In fact, a PullProvider can deliver any sequence of nodes or atomic values. An atomic value in the sequence is delivered as a single event; a node is delivered as a sequence of events equivalent to a recursive walk of the XML tree. Within this sequence, the start and end of a document, or of an element, are delivered as separate events; other nodes are delivered as individual events.


Field Summary
final public static  intATOMIC_VALUE
     ATOMIC_VALUE is notified when the PullProvider is reading a sequence of items, and one of the items is an atomic value rather than a node.
final public static  intATTRIBUTE
     The ATTRIBUTE event is notified only for an attribute node that appears in its own right as a top-level item in the sequence being read.
final public static  intCOMMENT
     A COMMENT event is notified for a comment node, which may be either a top-level comment or one nested within an element or document node.
final public static  intEND_DOCUMENT
     END_DOCUMENT is notified at the end of processing a document node, that is, after all the descendants of the document node have been notified.
final public static  intEND_ELEMENT
     END_ELEMENT is notified at the end of an element node, that is, after all the children and descendants of the element have either been processed or skipped.
final public static  intEND_OF_INPUT
     The END_OF_INPUT event is returned to indicate the end of the sequence being read.
final public static  intNAMESPACE
     The NAMESPACE event is notified only for a namespace node that appears in its own right as a top-level item in the sequence being read.
final public static  intPROCESSING_INSTRUCTION
     A PROCESSING_INSTRUCTION event is notified for a processing instruction node, which may be either a top-level comment or one nested within an element or document node.
final public static  intSTART_DOCUMENT
     START_DOCUMENT is notified when a document node is encountered.
final public static  intSTART_ELEMENT
     START_ELEMENT is notified when an element node is encountered.
final public static  intSTART_OF_INPUT
     START_OF_INPUT is the initial state when the PullProvider is instantiated.
final public static  intTEXT
     A TEXT event is notified for a text node.


Method Summary
public  voidclose()
     Close the event reader.
public  intcurrent()
     Get the event most recently returned by next(), or by other calls that change the position, for example getStringValue() and skipToMatchingEnd().
public  AtomicValuegetAtomicValue()
     Get an atomic value.
public  AttributeCollectiongetAttributes()
     Get the attributes associated with the current element.
public  intgetFingerprint()
     Get the fingerprint of the name of the element.
public  intgetNameCode()
     Get the nameCode identifying the name of the current node.
public  NamespaceDeclarationsgetNamespaceDeclarations()
     Get the namespace declarations associated with the current element.
public  PipelineConfigurationgetPipelineConfiguration()
     Get configuration information.
public  SourceLocatorgetSourceLocator()
     Get the location of the current event. For an event stream representing a real document, the location information should identify the location in the lexical XML source.
public  CharSequencegetStringValue()
     Get the string value of the current element, text node, processing-instruction, or top-level attribute or namespace node, or atomic value.

In other situations the result is undefined and may result in an IllegalStateException.

If the most recent event was a PullProvider.START_ELEMENT , this method causes the content of the element to be read.

public  intgetTypeAnnotation()
     Get the type annotation of the current attribute or element node, or atomic value. The result of this method is undefined unless the most recent event was START_ELEMENT, ATTRIBUTE, or ATOMIC_VALUE.
public  intnext()
     Get the next event an integer code indicating the type of event.
public  voidsetPipelineConfiguration(PipelineConfiguration pipe)
     Set configuration information.
public  intskipToMatchingEnd()
     Skip the current subtree.

Field Detail
ATOMIC_VALUE
final public static int ATOMIC_VALUE(Code)
ATOMIC_VALUE is notified when the PullProvider is reading a sequence of items, and one of the items is an atomic value rather than a node. This will always be a top-level event (it will never be nested in Start/End Document or Start/End Element).



ATTRIBUTE
final public static int ATTRIBUTE(Code)
The ATTRIBUTE event is notified only for an attribute node that appears in its own right as a top-level item in the sequence being read. ATTRIBUTE events are not notified for the attributes of an element that has been notified: such attributes must be read using the PullProvider.getAttributes() method.



COMMENT
final public static int COMMENT(Code)
A COMMENT event is notified for a comment node, which may be either a top-level comment or one nested within an element or document node.



END_DOCUMENT
final public static int END_DOCUMENT(Code)
END_DOCUMENT is notified at the end of processing a document node, that is, after all the descendants of the document node have been notified. The event will always be preceded by the corresponding START_DOCUMENT event.



END_ELEMENT
final public static int END_ELEMENT(Code)
END_ELEMENT is notified at the end of an element node, that is, after all the children and descendants of the element have either been processed or skipped. It may relate to a top-level element, or to a nested element. For an empty element (one with no children) the END_ELEMENT event will immediately follow the corresponding START_ELEMENT event. No information (such as the element name) is available after an END_ELEMENT event: if the client requires such information, it must remember it, typically on a Stack.



END_OF_INPUT
final public static int END_OF_INPUT(Code)
The END_OF_INPUT event is returned to indicate the end of the sequence being read. After this event, the result of any further calls on the next() method is undefined.



NAMESPACE
final public static int NAMESPACE(Code)
The NAMESPACE event is notified only for a namespace node that appears in its own right as a top-level item in the sequence being read. NAMESPACE events are not notified for the namespaces of an element that has been notified: such attributes must be read using the PullProvider.getNamespaceDeclarations() method.



PROCESSING_INSTRUCTION
final public static int PROCESSING_INSTRUCTION(Code)
A PROCESSING_INSTRUCTION event is notified for a processing instruction node, which may be either a top-level comment or one nested within an element or document node. As defined in the XPath data model, the "target" of a processing instruction is represented as the node name (which only has a local part, no prefix or URI), and the "data" of the processing instruction is represented as the string-value of the node.



START_DOCUMENT
final public static int START_DOCUMENT(Code)
START_DOCUMENT is notified when a document node is encountered. This will always be a top-level event (it will never be nested in Start/End Document or Start/End Element). Note however that multiple document nodes can occur in a sequence, and the start and end of each one will be notified.



START_ELEMENT
final public static int START_ELEMENT(Code)
START_ELEMENT is notified when an element node is encountered. This may either be a top-level element (an element node that participates in the sequence being read in its own right) or a nested element (reported because it is a descendant of an element or document node that participates in the sequence.)

Following the notification of START_ELEMENT, the client may obtain information about the element node, such as its name and type annotation. The client may also call getAttributes() to obtain information about the attributes of the element node, and/or getNamespaceDeclarations to get information about the namespace declarations. The client may then do one of the following:

  • Call skipToEnd() to move straight to the corresponding END_ELEMENT event (which will be the next event notified)
  • Call next(), repeatedly, to be notified of events relating to the children and descendants of this element node
  • Call getStringValue() to obtain the string value of the element node, after which the next event notified will be the corresponding END_ELEMENT event
  • Call getTypedValue() to obtain the typed value of the element node, after which the next event notified will be the corresponding END_ELEMENT event



START_OF_INPUT
final public static int START_OF_INPUT(Code)
START_OF_INPUT is the initial state when the PullProvider is instantiated. This event is never notified by the next() method, but it is returned from a call of current() prior to the first call on next().



TEXT
final public static int TEXT(Code)
A TEXT event is notified for a text node. This may either be a top-level text node, or a text node nested within an element or document node. At the top level, text nodes may be zero-length and may be consecutive in the sequence being read. Nested within an element or document node, text nodes will never be zero-length, and adjacent text nodes will have been coalesced into one. (This might not always be true when reading third-party data models such as a DOM.) Whitespace-only text nodes will be notified unless something has been done (e.g. xsl:strip-space) to remove them.





Method Detail
close
public void close()(Code)
Close the event reader. This indicates that no further events are required. It is not necessary to close an event reader after PullProvider.END_OF_INPUT has been reported, but it is recommended to close it if reading terminates prematurely. Once an event reader has been closed, the effect of further calls on next() is undefined.



current
public int current()(Code)
Get the event most recently returned by next(), or by other calls that change the position, for example getStringValue() and skipToMatchingEnd(). This method does not change the position of the PullProvider. the current event



getAtomicValue
public AtomicValue getAtomicValue()(Code)
Get an atomic value. This call may be used only when the last event reported was ATOMIC_VALUE. This indicates that the PullProvider is reading a sequence that contains a free-standing atomic value; it is never used when reading the content of a node.



getAttributes
public AttributeCollection getAttributes() throws XPathException(Code)
Get the attributes associated with the current element. This method must be called only after a START_ELEMENT event has been notified. The contents of the returned AttributeCollection are guaranteed to remain unchanged until the next START_ELEMENT event, but may be modified thereafter. The object should not be modified by the client.

Attributes may be read before or after reading the namespaces of an element, but must not be read after the first child node has been read, or after calling one of the methods skipToEnd(), getStringValue(), or getTypedValue().

an AttributeCollection representing the attributes of the elementthat has just been notified.



getFingerprint
public int getFingerprint()(Code)
Get the fingerprint of the name of the element. This is similar to the nameCode, except that it does not contain any information about the prefix: so two elements with the same fingerprint have the same name, excluding prefix. This method can be used after the PullProvider.START_ELEMENT , PullProvider.END_ELEMENT , PullProvider.PROCESSING_INSTRUCTION , PullProvider.ATTRIBUTE , or PullProvider.NAMESPACE events. If called at other times, the result is undefined and may result in an IllegalStateException. If called when the current node is an unnamed namespace node (a node representing the default namespace) the returned value is -1. the fingerprint. The fingerprint can be used to obtain the local nameand namespace URI from the name pool.



getNameCode
public int getNameCode()(Code)
Get the nameCode identifying the name of the current node. This method can be used after the PullProvider.START_ELEMENT , PullProvider.PROCESSING_INSTRUCTION , PullProvider.ATTRIBUTE , or PullProvider.NAMESPACE events. With some PullProvider implementations, it can also be used after PullProvider.END_ELEMENT , but this is not guaranteed: a client who requires the information at that point (for example, to do serialization) should insert an ElementNameTracker into the pipeline. If called at other times, the result is undefined and may result in an IllegalStateException. If called when the current node is an unnamed namespace node (a node representing the default namespace) the returned value is -1. the nameCode. The nameCode can be used to obtain the prefix, local name,and namespace URI from the name pool.



getNamespaceDeclarations
public NamespaceDeclarations getNamespaceDeclarations() throws XPathException(Code)
Get the namespace declarations associated with the current element. This method must be called only after a START_ELEMENT event has been notified. In the case of a top-level START_ELEMENT event (that is, an element that either has no parent node, or whose parent is not included in the sequence being read), the NamespaceDeclarations object returned will contain a namespace declaration for each namespace that is in-scope for this element node. In the case of a non-top-level element, the NamespaceDeclarations will contain a set of namespace declarations and undeclarations, representing the differences between this element and its parent.

It is permissible for this method to return namespace declarations that are redundant.

The NamespaceDeclarations object is guaranteed to remain unchanged until the next START_ELEMENT event, but may then be overwritten. The object should not be modified by the client.

Namespaces may be read before or after reading the attributes of an element, but must not be read after the first child node has been read, or after calling one of the methods skipToEnd(), getStringValue(), or getTypedValue().

*



getPipelineConfiguration
public PipelineConfiguration getPipelineConfiguration()(Code)
Get configuration information.



getSourceLocator
public SourceLocator getSourceLocator()(Code)
Get the location of the current event. For an event stream representing a real document, the location information should identify the location in the lexical XML source. For a constructed document, it should identify the location in the query or stylesheet that caused the node to be created. A value of null can be returned if no location information is available.



getStringValue
public CharSequence getStringValue() throws XPathException(Code)
Get the string value of the current element, text node, processing-instruction, or top-level attribute or namespace node, or atomic value.

In other situations the result is undefined and may result in an IllegalStateException.

If the most recent event was a PullProvider.START_ELEMENT , this method causes the content of the element to be read. The current event on completion of this method will be the corresponding PullProvider.END_ELEMENT . The next call of next() will return the event following the END_ELEMENT event.

the String Value of the node in question, defined according to the rules in theXPath data model.



getTypeAnnotation
public int getTypeAnnotation()(Code)
Get the type annotation of the current attribute or element node, or atomic value. The result of this method is undefined unless the most recent event was START_ELEMENT, ATTRIBUTE, or ATOMIC_VALUE. In the case of an attribute node, the additional bit NodeInfo.IS_DTD_TYPE may be set to indicate a DTD-derived ID or IDREF/S type. the type annotation. This code is the fingerprint of a type name, which may beresolved to a net.sf.saxon.type.SchemaType by access to the Configuration.



next
public int next() throws XPathException(Code)
Get the next event an integer code indicating the type of event. The codePullProvider.END_OF_INPUT is returned at the end of the sequence.



setPipelineConfiguration
public void setPipelineConfiguration(PipelineConfiguration pipe)(Code)
Set configuration information. This must only be called before any events have been read.



skipToMatchingEnd
public int skipToMatchingEnd() throws XPathException(Code)
Skip the current subtree. This method may be called only immediately after a START_DOCUMENT or START_ELEMENT event. This call returns the matching END_DOCUMENT or END_ELEMENT event; the next call on next() will return the event following the END_DOCUMENT or END_ELEMENT.
throws:
  IllegalStateException - if the method is called at any time other thanimmediately after a START_DOCUMENT or START_ELEMENT event.



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.