Java Doc for TKVector.java in  » Content-Management-System » webman » com » teamkonzept » lib » 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 » Content Management System » webman » com.teamkonzept.lib 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.util.Vector
   com.teamkonzept.lib.TKVector

All known Subclasses:   com.teamkonzept.lib.TKDBResultRowList,  com.teamkonzept.lib.TKDBResult,
TKVector
public class TKVector extends Vector (Code)

author:
   $Author: mischa $
version:
   $Revision: 1.8 $



Constructor Summary
public  TKVector()
    
public  TKVector(int initialCapacity)
    
public  TKVector(int initialCapacity, int capacityIncrement)
    
public  TKVector(Object init)
     /** Konstruktor4 Ein Array wird uebergeben und in ein TK-Vector-Objekt ueberfuehrt.
public  TKVector(Collection c)
    

Method Summary
public  TKVectorarea(int begin, int end)
    
public  voidconcat(Object add)
     /** Wird ein Vector oder ein Array con Objekten uebergeben, so wird jedes Element des Vectors an den aktuellen angehaengt, nicht der uebergebene Vector oder das Objekt-Array selbst.
public static  TKVectorconcat(TKVector h1, TKVector h2)
    
public  ObjectelementAt(int[] idxList)
     /** Liefert ein Element in einem verschachtelten Vector.
public  voidfill()
    
public  Objectget(int idx)
    
public  Objectget(int[] idxList)
     /** Liefert ein Element in einem verschachtelten Vector.
public  TKVectorgrep(String thePattern)
    
public  TKVectorpop()
    
public  voidput(int idx, Object obj)
     /** Ein Object wird auf der ersten Ebene an den uebergebenen Index eingefuegt.
public  voidput(int[] idxList, Object obj)
     /** Innerhalb eines verschachtelten Vactors wird ein Objekt eingefuegt.
public  TKVectorreverse()
    
public  TKVectorrsort()
    
public  TKVectorselect(int idx)
    
public  voidsetElementAt(Object obj, int[] idxList)
     /** Innerhalb eines verschachtelten Vactors wird ein Objekt gestezt.
public  TKVectorsort()
    
public  StringtoPerlString()
    
public  StringtoPerlString(int indentCount, boolean withNewline)
    
public  TKVectorunique()
    


Constructor Detail
TKVector
public TKVector()(Code)
Konstruktor1



TKVector
public TKVector(int initialCapacity)(Code)
Konstruktor2



TKVector
public TKVector(int initialCapacity, int capacityIncrement)(Code)
/** Konstruktor3



TKVector
public TKVector(Object init)(Code)
/** Konstruktor4 Ein Array wird uebergeben und in ein TK-Vector-Objekt ueberfuehrt.
Parameters:
  Object - init[], ein Array



TKVector
public TKVector(Collection c)(Code)
konstruktor nach jdk 1.2




Method Detail
area
public TKVector area(int begin, int end)(Code)
/** Berreich eines Vektors als neuen Vektor zurueckgeben int begin int end den Vektor mit den Elementen, die im Bereich lagen



concat
public void concat(Object add)(Code)
/** Wird ein Vector oder ein Array con Objekten uebergeben, so wird jedes Element des Vectors an den aktuellen angehaengt, nicht der uebergebene Vector oder das Objekt-Array selbst.
Parameters:
  Object - add, das an den aktuellen TKVector anzuhaengende Objekt



concat
public static TKVector concat(TKVector h1, TKVector h2)(Code)
/** Zwei Vectoren werden zu einem zusammengefasst
Parameters:
  TKVector - h1, Vector 1
Parameters:
  TKVector - h2, Vector 2



elementAt
public Object elementAt(int[] idxList)(Code)
/** Liefert ein Element in einem verschachtelten Vector. Ein Element eines Vectors kann wiederum ein Vector sein usw. Die Laenge des Arrays gibt die Tiefe der Suche an und der Wert den Index des jeweiligen Vectors. int idxList[], Indexliste Element des Vectors



fill
public void fill()(Code)
/** Jedes Element des Enumerationsobjektes wird in den Vector eingefuegt
Parameters:
  Enumeration - enum, enthaelt die zu setzenden Elemente



get
public Object get(int idx)(Code)
/** Das Element des uebergebenen Index wird zuruexkgegeben int idx, ein Index ein Element des Vectors



get
public Object get(int[] idxList)(Code)
/** Liefert ein Element in einem verschachtelten Vector. Ein Element eines Vectors kann wiederum ein Vector sein usw. Die Laenge des Arrays gibt die Tiefe der Suche an und der Wert den Index des jeweiligen Vectors. int idxList[], Indexliste Element des Vectors



grep
public TKVector grep(String thePattern)(Code)
/** Auswahl durch Suchmuster Beispiel: Vector: ["Lara","Ute","Karin","Susi"] thePattern: "ar" Result: ["Lara","Karin"]
Parameters:
  String - thePattern, jedes Vektorelement, das diesenString enthaelt wird in einen neuen Vector gepackt den Vektor mit den Elementen, die den Pattern enthalten



pop
public TKVector pop()(Code)
/** Entfernt letztes Element
Parameters:
  TKVector - aVector, Vector 1



put
public void put(int idx, Object obj)(Code)
/** Ein Object wird auf der ersten Ebene an den uebergebenen Index eingefuegt.
Parameters:
  Object - obj, das zu setzende Element int idx, der Index



put
public void put(int[] idxList, Object obj)(Code)
/** Innerhalb eines verschachtelten Vactors wird ein Objekt eingefuegt. Die Laenge des Arrays gibt die Tiefe an und der Wert den Index des jeweiligen Vectors.
Parameters:
  Object - obj, das zu setzende Element int idxList[], Indexliste



reverse
public TKVector reverse()(Code)
/** Umdrehen den umgedrehten Vektor



rsort
public TKVector rsort()(Code)
/** Sotiert einen Vector rueckwarts (Quick-Sort) den sortierten Vector



select
public TKVector select(int idx)(Code)
/** Auftrennen: Vector: ["Anna","Ute","Karin","Susi"] Array: idx[]= {1,3} Result: ["Ute","Susi"] int idx[], der Array enthaelt Indizes einen neuen Teil-Vector



setElementAt
public void setElementAt(Object obj, int[] idxList)(Code)
/** Innerhalb eines verschachtelten Vactors wird ein Objekt gestezt. Die Laenge des Arrays gibt die Tiefe an und der Wert den Index des jeweiligen Vectors.
Parameters:
  Object - obj, das zu setzende Element int idxList[], Indexliste



sort
public TKVector sort()(Code)
/** Sotiert einen Vector (Quick-Sort) den sortierten Vector



toPerlString
public String toPerlString()(Code)
/** Erzeugt einen String, der die Liste in perl-Notation enthält



toPerlString
public String toPerlString(int indentCount, boolean withNewline)(Code)
/** Erzeugt einen String, der die Liste in perl-Notation enthält int indentCount boolean withNewline, soll ein Newline zeichen verwendet werden?



unique
public TKVector unique()(Code)
/** Mehrfach vorkommende Elemente in einem Vector werden auf ein element reduziert den gsauberten Vector



Fields inherited from java.util.Vector
protected int capacityIncrement(Code)(Java Doc)
protected int elementCount(Code)(Java Doc)
protected Object[] elementData(Code)(Java Doc)

Methods inherited from java.util.Vector
public synchronized boolean add(E e)(Code)(Java Doc)
public void add(int index, E element)(Code)(Java Doc)
public synchronized boolean addAll(Collection<? extends E> c)(Code)(Java Doc)
public synchronized boolean addAll(int index, Collection<? extends E> c)(Code)(Java Doc)
public synchronized void addElement(E obj)(Code)(Java Doc)
public synchronized int capacity()(Code)(Java Doc)
public void clear()(Code)(Java Doc)
public synchronized Object clone()(Code)(Java Doc)
public boolean contains(Object o)(Code)(Java Doc)
public synchronized boolean containsAll(Collection c)(Code)(Java Doc)
public synchronized void copyInto(Object[] anArray)(Code)(Java Doc)
public synchronized E elementAt(int index)(Code)(Java Doc)
public Enumeration<E> elements()(Code)(Java Doc)
public synchronized void ensureCapacity(int minCapacity)(Code)(Java Doc)
public synchronized boolean equals(Object o)(Code)(Java Doc)
public synchronized E firstElement()(Code)(Java Doc)
public synchronized E get(int index)(Code)(Java Doc)
public synchronized int hashCode()(Code)(Java Doc)
public int indexOf(Object o)(Code)(Java Doc)
public synchronized int indexOf(Object o, int index)(Code)(Java Doc)
public synchronized void insertElementAt(E obj, int index)(Code)(Java Doc)
public synchronized boolean isEmpty()(Code)(Java Doc)
public synchronized Iterator<E> iterator()(Code)(Java Doc)
public synchronized E lastElement()(Code)(Java Doc)
public synchronized int lastIndexOf(Object o)(Code)(Java Doc)
public synchronized int lastIndexOf(Object o, int index)(Code)(Java Doc)
public synchronized ListIterator<E> listIterator(int index)(Code)(Java Doc)
public synchronized ListIterator<E> listIterator()(Code)(Java Doc)
public boolean remove(Object o)(Code)(Java Doc)
public synchronized E remove(int index)(Code)(Java Doc)
public synchronized boolean removeAll(Collection c)(Code)(Java Doc)
public synchronized void removeAllElements()(Code)(Java Doc)
public synchronized boolean removeElement(Object obj)(Code)(Java Doc)
public synchronized void removeElementAt(int index)(Code)(Java Doc)
protected synchronized void removeRange(int fromIndex, int toIndex)(Code)(Java Doc)
public synchronized boolean retainAll(Collection c)(Code)(Java Doc)
public synchronized E set(int index, E element)(Code)(Java Doc)
public synchronized void setElementAt(E obj, int index)(Code)(Java Doc)
public synchronized void setSize(int newSize)(Code)(Java Doc)
public synchronized int size()(Code)(Java Doc)
public synchronized List<E> subList(int fromIndex, int toIndex)(Code)(Java Doc)
public synchronized Object[] toArray()(Code)(Java Doc)
public synchronized T[] toArray(T[] a)(Code)(Java Doc)
public synchronized String toString()(Code)(Java Doc)
public synchronized void trimToSize()(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.