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


java.lang.Object
   gnu.lists.AbstractSequence
      gnu.lists.SimpleVector

All known Subclasses:   gnu.lists.U8Vector,  gnu.lists.U64Vector,  gnu.lists.F32Vector,  gnu.lists.BitVector,  gnu.lists.U16Vector,  gnu.lists.FVector,  gnu.lists.S32Vector,  gnu.lists.U32Vector,  gnu.lists.S8Vector,  gnu.lists.F64Vector,  gnu.lists.FString,  gnu.lists.S16Vector,  gnu.lists.S64Vector,
SimpleVector
abstract public class SimpleVector extends AbstractSequence implements Sequence,Array(Code)
A SimpleVector implement as a simple array plus a current size. Methods with the word "Buffer" are methods which use the underlying array, ignoring the 'size' field. Can be used to implement CommonLisp simple vectors, but all simple vectors are also adjustable (by re-allocating the buffer) and have a fill pointer (the size field).


Field Summary
public  intsize
     The (current) number of elements. Must always have size() >= 0 && size() <= getBufferLength().


Method Summary
public  booleanadd(Object o)
    
public  voidadd(int index, Object o)
    
public  booleanaddAll(int index, Collection c)
    
protected  intaddPos(int ipos, Object value)
    
public  voidclear()
    
abstract protected  voidclearBuffer(int start, int count)
    
protected static  intcompareToInt(SimpleVector v1, SimpleVector v2)
    
protected static  intcompareToLong(SimpleVector v1, SimpleVector v2)
    
public  voidconsume(int start, int length, Consumer out)
    
public  booleanconsumeNext(int ipos, Consumer out)
    
public  voidconsumePosRange(int iposStart, int iposEnd, Consumer out)
    
public  intcreatePos(int index, boolean isAfter)
    
public  voidfill(Object value)
    
public  voidfill(int fromIndex, int toIndex, Object value)
    
public  voidfillPosRange(int fromPos, int toPos, Object value)
    
public  Objectget(int index)
    
abstract protected  ObjectgetBuffer()
    
abstract protected  ObjectgetBuffer(int index)
    
abstract public  intgetBufferLength()
     Get the allocated length of the data buffer.
public  intgetElementKind()
    
public  intgetNextKind(int ipos)
    
public  ObjectgetPosNext(int ipos)
    
public  ObjectgetRowMajor(int i)
    
public  StringgetTag()
     This is convenience hack for printing "uniform vectors" (srfi 4).
public  intintAt(int index)
    
public  intintAtBuffer(int index)
    
protected  booleanisAfterPos(int ipos)
    
public  longlongAt(int index)
    
public  longlongAtBuffer(int index)
    
protected  intnextIndex(int ipos)
    
public  intnextPos(int ipos)
    
public  Objectremove(int index)
    
public  booleanremove(Object o)
    
public  booleanremoveAll(Collection c)
    
public  voidremovePos(int ipos, int count)
    
protected  voidremovePosRange(int ipos0, int ipos1)
    
public  booleanretainAll(Collection c)
    
public  Objectset(int index, Object value)
    
abstract protected  ObjectsetBuffer(int index, Object value)
    
abstract public  voidsetBufferLength(int length)
    
public  voidsetSize(int size)
     Set the size to a specified value. The data buffer is grown if needed, with new elements set to zero/null.
public  voidshift(int srcStart, int dstStart, int count)
    
final public  intsize()
    
public  Arraytranspose(int[] lowBounds, int[] dimensions, int offset0, int[] factors)
    

Field Detail
size
public int size(Code)
The (current) number of elements. Must always have size() >= 0 && size() <= getBufferLength().





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



add
public void add(int index, Object o)(Code)



addAll
public boolean addAll(int index, Collection c)(Code)



addPos
protected int addPos(int ipos, Object value)(Code)



clear
public void clear()(Code)



clearBuffer
abstract protected void clearBuffer(int start, int count)(Code)



compareToInt
protected static int compareToInt(SimpleVector v1, SimpleVector v2)(Code)



compareToLong
protected static int compareToLong(SimpleVector v1, SimpleVector v2)(Code)



consume
public void consume(int start, int length, Consumer out)(Code)



consumeNext
public boolean consumeNext(int ipos, Consumer out)(Code)



consumePosRange
public void consumePosRange(int iposStart, int iposEnd, Consumer out)(Code)



createPos
public int createPos(int index, boolean isAfter)(Code)



fill
public void fill(Object value)(Code)



fill
public void fill(int fromIndex, int toIndex, Object value)(Code)



fillPosRange
public void fillPosRange(int fromPos, int toPos, Object value)(Code)



get
public Object get(int index)(Code)



getBuffer
abstract protected Object getBuffer()(Code)



getBuffer
abstract protected Object getBuffer(int index)(Code)



getBufferLength
abstract public int getBufferLength()(Code)
Get the allocated length of the data buffer.



getElementKind
public int getElementKind()(Code)



getNextKind
public int getNextKind(int ipos)(Code)



getPosNext
public Object getPosNext(int ipos)(Code)



getRowMajor
public Object getRowMajor(int i)(Code)



getTag
public String getTag()(Code)
This is convenience hack for printing "uniform vectors" (srfi 4). It may go away without notice!



intAt
public int intAt(int index)(Code)



intAtBuffer
public int intAtBuffer(int index)(Code)



isAfterPos
protected boolean isAfterPos(int ipos)(Code)



longAt
public long longAt(int index)(Code)



longAtBuffer
public long longAtBuffer(int index)(Code)



nextIndex
protected int nextIndex(int ipos)(Code)



nextPos
public int nextPos(int ipos)(Code)



remove
public Object remove(int index)(Code)



remove
public boolean remove(Object o)(Code)



removeAll
public boolean removeAll(Collection c)(Code)



removePos
public void removePos(int ipos, int count)(Code)



removePosRange
protected void removePosRange(int ipos0, int ipos1)(Code)



retainAll
public boolean retainAll(Collection c)(Code)



set
public Object set(int index, Object value)(Code)



setBuffer
abstract protected Object setBuffer(int index, Object value)(Code)



setBufferLength
abstract public void setBufferLength(int length)(Code)



setSize
public void setSize(int size)(Code)
Set the size to a specified value. The data buffer is grown if needed, with new elements set to zero/null. If size is less than the current value, removed values are set to zero/null.. (This is because if you decrease and then increase the vector the should be zero/null, and it is cleaner and better for gc to do the zeroing/nulling on remove rather than add.) If you need to change the size without setting removed elements to zero/null (e.g. to change Common Lisp's fill pointer) set size directly.



shift
public void shift(int srcStart, int dstStart, int count)(Code)



size
final public int size()(Code)



transpose
public Array transpose(int[] lowBounds, int[] dimensions, int offset0, int[] factors)(Code)



Methods inherited from gnu.lists.AbstractSequence
public boolean add(Object o)(Code)(Java Doc)
public void add(int index, Object o)(Code)(Java Doc)
public boolean addAll(Collection c)(Code)(Java Doc)
public boolean addAll(int index, Collection c)(Code)(Java Doc)
protected int addPos(int ipos, Object value)(Code)(Java Doc)
public void clear()(Code)(Java Doc)
public int compare(int ipos1, int ipos2)(Code)(Java Doc)
final public int compare(SeqPosition i1, SeqPosition i2)(Code)(Java Doc)
public static int compare(AbstractSequence seq1, int pos1, AbstractSequence seq2, int pos2)(Code)(Java Doc)
public void consume(Consumer out)(Code)(Java Doc)
public boolean consumeNext(int ipos, Consumer out)(Code)(Java Doc)
public void consumePosRange(int iposStart, int iposEnd, Consumer out)(Code)(Java Doc)
public boolean contains(Object o)(Code)(Java Doc)
public boolean containsAll(Collection c)(Code)(Java Doc)
public int copyPos(int ipos)(Code)(Java Doc)
abstract public int createPos(int index, boolean isAfter)(Code)(Java Doc)
public int createRelativePos(int pos, int delta, boolean isAfter)(Code)(Java Doc)
final public Enumeration elements()(Code)(Java Doc)
public int endPos()(Code)(Java Doc)
public boolean equals(int ipos1, int ipos2)(Code)(Java Doc)
public boolean equals(Object o)(Code)(Java Doc)
public void fill(Object value)(Code)(Java Doc)
public void fill(int fromIndex, int toIndex, Object value)(Code)(Java Doc)
public void fillPosRange(int fromPos, int toPos, Object value)(Code)(Java Doc)
public int firstAttributePos(int ipos)(Code)(Java Doc)
public int firstChildPos(int ipos)(Code)(Java Doc)
public int firstChildPos(int ipos, ItemPredicate predicate)(Code)(Java Doc)
protected int fromEndIndex(int ipos)(Code)(Java Doc)
abstract public Object get(int index)(Code)(Java Doc)
public Object get(int[] indexes)(Code)(Java Doc)
public Object getAttribute(int index)(Code)(Java Doc)
public int getAttributeLength()(Code)(Java Doc)
protected int getContainingSequenceSize(int ipos)(Code)(Java Doc)
public int getEffectiveIndex(int[] indexes)(Code)(Java Doc)
protected int getIndexDifference(int ipos1, int ipos0)(Code)(Java Doc)
final public SeqPosition getIterator()(Code)(Java Doc)
public SeqPosition getIterator(int index)(Code)(Java Doc)
public SeqPosition getIteratorAtPos(int ipos)(Code)(Java Doc)
public int getLowBound(int dim)(Code)(Java Doc)
public int getNextKind(int ipos)(Code)(Java Doc)
public String getNextTypeName(int ipos)(Code)(Java Doc)
public Object getNextTypeObject(int ipos)(Code)(Java Doc)
public Object getPosNext(int ipos)(Code)(Java Doc)
public Object getPosPrevious(int ipos)(Code)(Java Doc)
public int getSize(int dim)(Code)(Java Doc)
protected boolean gotoAttributesStart(TreePosition pos)(Code)(Java Doc)
final public boolean gotoChildrenStart(TreePosition pos)(Code)(Java Doc)
protected boolean gotoParent(TreePosition pos)(Code)(Java Doc)
public boolean hasNext(int ipos)(Code)(Java Doc)
protected boolean hasPrevious(int ipos)(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
public int indexOf(Object o)(Code)(Java Doc)
protected boolean isAfterPos(int ipos)(Code)(Java Doc)
public boolean isEmpty()(Code)(Java Doc)
final public Iterator iterator()(Code)(Java Doc)
public int lastIndexOf(Object o)(Code)(Java Doc)
final public ListIterator listIterator()(Code)(Java Doc)
final public ListIterator listIterator(int index)(Code)(Java Doc)
protected int nextIndex(int ipos)(Code)(Java Doc)
final public int nextIndex(SeqPosition pos)(Code)(Java Doc)
public int nextMatching(int startPos, ItemPredicate type, int endPos, boolean descend)(Code)(Java Doc)
public int nextPos(int ipos)(Code)(Java Doc)
public int parentPos(int ipos)(Code)(Java Doc)
public int previousPos(int ipos)(Code)(Java Doc)
public int rank()(Code)(Java Doc)
protected void releasePos(int ipos)(Code)(Java Doc)
public Object remove(int index)(Code)(Java Doc)
public boolean remove(Object o)(Code)(Java Doc)
public boolean removeAll(Collection c)(Code)(Java Doc)
public void removePos(int ipos, int count)(Code)(Java Doc)
protected void removePosRange(int ipos0, int ipos1)(Code)(Java Doc)
public boolean retainAll(Collection c)(Code)(Java Doc)
public Object set(int[] indexes, Object value)(Code)(Java Doc)
public Object set(int index, Object element)(Code)(Java Doc)
protected void setPosNext(int ipos, Object value)(Code)(Java Doc)
protected void setPosPrevious(int ipos, Object value)(Code)(Java Doc)
abstract public int size()(Code)(Java Doc)
public int stableCompare(AbstractSequence other)(Code)(Java Doc)
public int startPos()(Code)(Java Doc)
public List subList(int fromIx, int toIx)(Code)(Java Doc)
public Sequence subSequence(SeqPosition start, SeqPosition end)(Code)(Java Doc)
protected Sequence subSequencePos(int ipos0, int ipos1)(Code)(Java Doc)
public Object[] toArray()(Code)(Java Doc)
public Object[] toArray(Object[] arr)(Code)(Java Doc)
public void toString(String sep, StringBuffer sbuf)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
protected RuntimeException unsupported(String text)(Code)(Java Doc)
public static RuntimeException unsupportedException(String text)(Code)(Java Doc)

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.