Class Overview
DLF docs must define behavior when Replaceable is mutated underneath
the iterator.
This and ICUCharacterIterator share some code, maybe they should share
an implementation, or the common state and implementation should be
moved up into UCharacterIterator.
What are first, last, and getBeginIndex doing here?!?!?!
Summary
Public Methods |
Object
|
clone()
Creates a copy of this iterator, does not clone the underlying
Replaceable object
|
int
|
current()
Returns the current UTF16 character.
|
int
|
getIndex()
Gets the current currentIndex in text.
|
int
|
getLength()
Returns the length of the text
|
int
|
getText(char[] fillIn, int offset)
Fills the buffer with the underlying text storage of the iterator
If the buffer capacity is not enough a exception is thrown.
|
int
|
next()
Returns next UTF16 character and increments the iterator's currentIndex by 1.
|
int
|
previous()
Returns previous UTF16 character and decrements the iterator's currentIndex by
1.
|
void
|
setIndex(int currentIndex)
Sets the currentIndex to the specified currentIndex in the text and returns that
single UTF16 character at currentIndex.
|
[Expand]
Inherited Methods |
From class
sun.text.normalizer.UCharacterIterator
Object
|
clone()
Creates a copy of this iterator, independent from other iterators.
|
abstract
int
|
current()
Returns the code unit at the current index.
|
abstract
int
|
getIndex()
Gets the current index in text.
|
final
static
UCharacterIterator
|
getInstance(CharacterIterator source)
Returns a UCharacterIterator object given a
CharacterIterator.
|
final
static
UCharacterIterator
|
getInstance(StringBuffer source)
Returns a UCharacterIterator object given a
source StringBuffer.
|
final
static
UCharacterIterator
|
getInstance(String source)
Returns a UCharacterIterator object given a
source string.
|
abstract
int
|
getLength()
Returns the length of the text
|
abstract
int
|
getText(char[] fillIn, int offset)
Fills the buffer with the underlying text storage of the iterator
If the buffer capacity is not enough a exception is thrown.
|
String
|
getText()
Convenience method for returning the underlying text storage as as string
|
final
int
|
getText(char[] fillIn)
Convenience override for getText(char[], int) that provides
an offset of 0.
|
int
|
moveIndex(int delta)
Moves the current position by the number of code units
specified, either forward or backward depending on the sign
of delta (positive or negative respectively).
|
abstract
int
|
next()
Returns the UTF16 code unit at index, and increments to the next
code unit (post-increment semantics).
|
int
|
nextCodePoint()
Returns the code point at index, and increments to the next code
point (post-increment semantics).
|
abstract
int
|
previous()
Decrement to the position of the previous code unit in the
text, and return it (pre-decrement semantics).
|
abstract
void
|
setIndex(int index)
Sets the index to the specified index in the text.
|
|
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this object.
|
boolean
|
equals(Object obj)
Indicates whether some other object is "equal to" this one.
|
void
|
finalize()
Called by the garbage collector on an object when garbage collection
determines that there are no more references to the object.
|
final
Class<?>
|
getClass()
Returns the runtime class of this Object .
|
int
|
hashCode()
Returns a hash code value for the object.
|
final
void
|
notify()
Wakes up a single thread that is waiting on this object's
monitor.
|
final
void
|
notifyAll()
Wakes up all threads that are waiting on this object's monitor.
|
String
|
toString()
Returns a string representation of the object.
|
final
void
|
wait()
Causes the current thread to wait until another thread invokes the
notify() method or the
notifyAll() method for this object.
|
final
void
|
wait(long timeout, int nanos)
Causes the current thread to wait until another thread invokes the
notify() method or the
notifyAll() method for this object, or
some other thread interrupts the current thread, or a certain
amount of real time has elapsed.
|
final
void
|
wait(long timeout)
Causes the current thread to wait until either another thread invokes the
notify() method or the
notifyAll() method for this object, or a
specified amount of time has elapsed.
|
|
Public Constructors
public
ReplaceableUCharacterIterator
(String str)
Parameters
str
| text which the iterator will be based on
|
public
ReplaceableUCharacterIterator
(StringBuffer buf)
Parameters
buf
| buffer of text on which the iterator will be based
|
Public Methods
public
Object
clone
()
Creates a copy of this iterator, does not clone the underlying
Replaceable
object
public
int
current
()
Returns the current UTF16 character.
public
int
getIndex
()
Gets the current currentIndex in text.
Returns
- current currentIndex in text.
public
int
getLength
()
Returns the length of the text
public
int
getText
(char[] fillIn, int offset)
Fills the buffer with the underlying text storage of the iterator
If the buffer capacity is not enough a exception is thrown. The capacity
of the fill in buffer should at least be equal to length of text in the
iterator obtained by calling getLength()
.
Usage:
UChacterIterator iter = new UCharacterIterator.getInstance(text);
char[] buf = new char[iter.getLength()];
iter.getText(buf);
OR
char[] buf= new char[1];
int len = 0;
for(;;){
try{
len = iter.getText(buf);
break;
}catch(IndexOutOfBoundsException e){
buf = new char[iter.getLength()];
}
}
Parameters
fillIn
| an array of chars to fill with the underlying UTF-16 code
units. |
offset
| the position within the array to start putting the data. |
Returns
- the number of code units added to fillIn, as a convenience
public
int
next
()
Returns next UTF16 character and increments the iterator's currentIndex by 1.
If the resulting currentIndex is greater or equal to the text length, the
currentIndex is reset to the text length and a value of DONECODEPOINT is
returned.
Returns
- next UTF16 character in text or DONE if the new currentIndex is off the
end of the text range.
public
int
previous
()
Returns previous UTF16 character and decrements the iterator's currentIndex by
1.
If the resulting currentIndex is less than 0, the currentIndex is reset to 0 and a
value of DONECODEPOINT is returned.
Returns
- next UTF16 character in text or DONE if the new currentIndex is off the
start of the text range.
public
void
setIndex
(int currentIndex)
Sets the currentIndex to the specified currentIndex in the text and returns that
single UTF16 character at currentIndex.
This assumes the text is stored as 16-bit code units.
Parameters
currentIndex
| the currentIndex within the text. |
Returns
- the character at the specified currentIndex or DONE if the specified
currentIndex is equal to the end of the text.