|
Oracle10g JDBC | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectoracle.sql.CharacterWalker
A CharacterWalker lets you walk through the characters that are represented as a sequence of bytes in some CharacterSet.
A character set determines a 32 bit value for each character. The values from 0 to 64K are reserved for their Unicode interpretation. Otherwise the value has no particular significance. But values can be used to build up another sequence with a CharacterBuffer.
CharacterSet,
CharacterBuffer| Constructor Summary | |
CharacterWalker(CharacterSet charSet,
byte[] bytes,
int offset,
int count)
Constructor. |
|
| Method Summary | |
boolean |
hasMoreCharacters()
Reports whether there are more bytes waiting to be converted. |
int |
nextCharacter()
Returns the next character in the sequence and advances the CharacterWalker over it. |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public CharacterWalker(CharacterSet charSet,
byte[] bytes,
int offset,
int count)
charSet - the CharacterSet to be used in interpreting the bytes.bytes - the byte array containing the data to be interpreted.offset - the index in bytes of the first byte to be interpreted.count - the number of bytes to be interpreted.| Method Detail |
public int nextCharacter()
throws java.util.NoSuchElementException
java.util.NoSuchElementException - if the walker has already returned
the last character or the sequence is ill-formed. That is, the
next bytes are somehow not allowed in the given representationpublic boolean hasMoreCharacters()
|
Oracle10g JDBC | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||