|
Oracle® Database JDBC Java API Reference 11g Release 2 ("11.2.0.0.1-Beta-1") BETA E13995-01 |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object
oracle.sql.CharacterWalker
public final class 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| Field Summary | |
|---|---|
static java.lang.String |
BUILD_DATE |
static boolean |
PRIVATE_TRACE |
static boolean |
TRACE |
| 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 |
| Field Detail |
|---|
public static final java.lang.String BUILD_DATE
public static final boolean TRACE
public static final boolean PRIVATE_TRACE
| 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()
|
Oracle® Database JDBC Java API Reference 11g Release 2 ("11.2.0.0.1-Beta-1") BETA E13995-01 |
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||