Public Methods | |
Utf8_Enumeration () | |
Utf8_Enumeration (byte b[]) | |
boolean | hasMoreElements () |
Object | nextElement () |
void | reset (byte b[]) |
Public Attributes | |
int | c |
Private Attributes | |
short | curindex |
short | length |
byte | bytes [] |
Definition at line 121 of file Utf8_Enumeration.java.
|
For creating an empty enumeration; you must use reset() after this to initialize the enumeration.
Definition at line 136 of file Utf8_Enumeration.java. |
|
For creating a normal enumeration of the given Utf8 string.
Definition at line 140 of file Utf8_Enumeration.java. |
|
true if the entire string hasn't been enumerated yet. Definition at line 146 of file Utf8_Enumeration.java. Referenced by CONSTANT_Utf8_info::compareTo().
|
|
Determines the next Utf8 character, and stores it in c.
Definition at line 154 of file Utf8_Enumeration.java. Referenced by CONSTANT_Utf8_info::compareTo().
|
|
Resets this object to be an enumeration of the given Utf8 string.
Definition at line 175 of file Utf8_Enumeration.java. Referenced by CONSTANT_Utf8_info::compareTo().
|
|
The latest character, as determined by nextElement.
Definition at line 126 of file Utf8_Enumeration.java. |