Class CharVector
- java.lang.Object
-
- org.apache.lucene.analysis.compound.hyphenation.CharVector
-
- All Implemented Interfaces:
java.lang.Cloneable
public class CharVector extends java.lang.Object implements java.lang.Cloneable
This class implements a simple char vector with access to the underlying array. This class has been taken from the Apache FOP project (http://xmlgraphics.apache.org/fop/). They have been slightly modified.
-
-
Constructor Summary
Constructors Constructor Description CharVector()
CharVector(char[] a)
CharVector(char[] a, int capacity)
CharVector(int capacity)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
alloc(int size)
int
capacity()
returns current capacity of arrayvoid
clear()
Reset Vector but don't resize or clear elementsCharVector
clone()
char
get(int index)
char[]
getArray()
int
length()
return number of items in arrayvoid
put(int index, char val)
void
trimToSize()
-
-
-
Method Detail
-
clear
public void clear()
Reset Vector but don't resize or clear elements
-
clone
public CharVector 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()
-
-