Java Doc for SeqPosition.java in  » Scripting » Nice » gnu » lists » 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 » Scripting » Nice » gnu.lists 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   gnu.lists.SeqPosition

All known Subclasses:   gnu.lists.TreePosition,
SeqPosition
public class SeqPosition implements java.util.ListIterator,PositionContainer,java.util.Enumeration(Code)
A position in a sequence (list). Conceptually similar to Java2's ListIterator, but we use the name "Position" to indicate that it can be used to both indicate a position in a sequence and to iterate through a sequence. If you use a SeqPosition as a "position", you would not modify if (though it is possible the offset of the position in the sequence may change due to other update operations on the sequence). If you use a SeqPosition as an "iterator", you would initialize it to some beginnning position, and then modify the current position of the SeqPosition so it refers to successive elements. See the package overview for more information.


Field Summary
public  intipos
     An integer that (together with xpos) indicates the current position.
public  AbstractSequencesequence
     The Sequence relative to which ipos and xpos have meaning.
public  Objectxpos
     An Object that (together with ipos) indicates the current position.

Constructor Summary
public  SeqPosition()
    
public  SeqPosition(AbstractSequence seq)
    
public  SeqPosition(AbstractSequence seq, int offset, boolean isAfter)
    
public  SeqPosition(AbstractSequence seq, int ipos, Object xpos)
    

Method Summary
public  voidadd(Object o)
    
public  intcountPositions()
     Implements PositionContainer.
public  voidfinalize()
    
final public  intfromEndIndex()
    
public  intgetContainingSequenceSize()
    
public  ObjectgetNext()
     Get element following current position.
public  intgetNextKind()
     Return a code (defined in Sequence) for the type of the next element.
public  StringgetNextTypeName()
     Get the "tag name" for the next element, if any.
public  ObjectgetNextTypeObject()
     Get the "tag object" for the next element, if any.
public  intgetPositionInt(int positionNumber)
     Implements PositionContainer.
public  ObjectgetPositionPtr(int positionNumber)
     Implements PositionContainer.
public  ObjectgetPrevious()
    
final public  voidgotoEnd(AbstractSequence seq)
    
final public  booleangotoNext()
     Move one element forwards, if possible.
final public  voidgotoStart(AbstractSequence seq)
    
public  booleanhasMoreElements()
     True if there is an element following the current position. False if we are at the end.
public  booleanhasNext()
     See java.util.Iterator.
public  booleanhasPrevious()
     See java.util.Iterator.
public  voidinit(AbstractSequence seq, int index, boolean isAfter)
    
public  voidinit(SeqPosition pos)
    
final public  booleanisAfter()
     Does the position pair have the "isAfter" property? I.e.
public static  SeqPositionmake(AbstractSequence seq, int ipos, Object xpos)
     Creates a new SeqPosition, from a position triple.
public  Objectnext()
     See java.util.ListIterator.
public  ObjectnextElement()
     See java.util.Enumeration.
final public  intnextIndex()
     See java.util.Iterator.
public  Objectprevious()
     See java.util.ListIterator.
final public  intpreviousIndex()
     See java.util.Iterator.
public  voidrelease()
    
public  voidremove()
    
final public  voidset(Object value)
    
public  voidsetPosition(int positionNumber, int ipos, Object xpos)
     Implements PositionContainer.
public  voidsetSequence(int positionNumber, AbstractSequence seq)
     Implements PositionContainer.
public  StringtoString()
    

Field Detail
ipos
public int ipos(Code)
An integer that (together with xpos) indicates the current position. The actual value has no meaning, except as interpreted by sequence.



sequence
public AbstractSequence sequence(Code)
The Sequence relative to which ipos and xpos have meaning. This is normally the same as the Sequence we iterate through. However, if this is a TreePosition, it may an ancestor instead.



xpos
public Object xpos(Code)
An Object that (together with ipos) indicates the current position. The actual value has no meaning, except as interpreted by sequence.




Constructor Detail
SeqPosition
public SeqPosition()(Code)



SeqPosition
public SeqPosition(AbstractSequence seq)(Code)



SeqPosition
public SeqPosition(AbstractSequence seq, int offset, boolean isAfter)(Code)



SeqPosition
public SeqPosition(AbstractSequence seq, int ipos, Object xpos)(Code)




Method Detail
add
public void add(Object o)(Code)



countPositions
public int countPositions()(Code)
Implements PositionContainer.



finalize
public void finalize()(Code)



fromEndIndex
final public int fromEndIndex()(Code)



getContainingSequenceSize
public int getContainingSequenceSize()(Code)



getNext
public Object getNext()(Code)
Get element following current position. Does not move the position, in contrast to nextElement method. EOF if at end of sequence, otherwise the value following.



getNextKind
public int getNextKind()(Code)
Return a code (defined in Sequence) for the type of the next element.



getNextTypeName
public String getNextTypeName()(Code)
Get the "tag name" for the next element, if any.



getNextTypeObject
public Object getNextTypeObject()(Code)
Get the "tag object" for the next element, if any.



getPositionInt
public int getPositionInt(int positionNumber)(Code)
Implements PositionContainer.



getPositionPtr
public Object getPositionPtr(int positionNumber)(Code)
Implements PositionContainer.



getPrevious
public Object getPrevious()(Code)



gotoEnd
final public void gotoEnd(AbstractSequence seq)(Code)



gotoNext
final public boolean gotoNext()(Code)
Move one element forwards, if possible.



gotoStart
final public void gotoStart(AbstractSequence seq)(Code)



hasMoreElements
public boolean hasMoreElements()(Code)
True if there is an element following the current position. False if we are at the end. See java.util.Enumeration.



hasNext
public boolean hasNext()(Code)
See java.util.Iterator.



hasPrevious
public boolean hasPrevious()(Code)
See java.util.Iterator.



init
public void init(AbstractSequence seq, int index, boolean isAfter)(Code)



init
public void init(SeqPosition pos)(Code)



isAfter
final public boolean isAfter()(Code)
Does the position pair have the "isAfter" property? I.e. if something is inserted at the position, will the iterator end up being after the new data? A toNext() or next() command should set isAfter() to true; a toPrevious or previous command should set isAfter() to false.



make
public static SeqPosition make(AbstractSequence seq, int ipos, Object xpos)(Code)
Creates a new SeqPosition, from a position triple. The position triple is copied (using copyPosition).



next
public Object next()(Code)
See java.util.ListIterator.



nextElement
public Object nextElement() throws NoSuchElementException(Code)
See java.util.Enumeration.



nextIndex
final public int nextIndex()(Code)
See java.util.Iterator.



previous
public Object previous()(Code)
See java.util.ListIterator.



previousIndex
final public int previousIndex()(Code)
See java.util.Iterator.



release
public void release()(Code)



remove
public void remove()(Code)



set
final public void set(Object value)(Code)



setPosition
public void setPosition(int positionNumber, int ipos, Object xpos)(Code)
Implements PositionContainer.



setSequence
public void setSequence(int positionNumber, AbstractSequence seq)(Code)
Implements PositionContainer.



toString
public String toString()(Code)



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

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