Package com.lowagie.text.pdf.hyphenation
Class CharVector
java.lang.Object
com.lowagie.text.pdf.hyphenation.CharVector
- All Implemented Interfaces:
Serializable,Cloneable
This class implements a simple char vector with access to the
underlying array.
- Author:
- Carlos Villegas <cav@uniscope.co.jp>
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCharVector(char[] a) CharVector(char[] a, int capacity) CharVector(int capacity) -
Method Summary
-
Constructor Details
-
CharVector
public CharVector() -
CharVector
public CharVector(int capacity) -
CharVector
public CharVector(char[] a) -
CharVector
public CharVector(char[] a, int capacity)
-
-
Method Details
-
clear
public void clear()Reset Vector but don't resize or clear elements -
clone
-
getArray
public char[] getArray() -
length
public int length()return number of items in array -
capacity
public int capacity()returns current capacity of array -
put
public void put(int index, char val) -
get
public char get(int index) -
alloc
public int alloc(int size) -
trimToSize
public void trimToSize()
-