Package | Description |
---|---|
javolution.text |
Text handling package.
|
javolution.util |
High-performance collection classes with
worst case execution time behavior documented. |
Modifier and Type | Method and Description |
---|---|
Cursor |
Cursor.increment()
Increments the cursor index by one.
|
Cursor |
Cursor.increment(int i)
Increments the cursor index by the specified value.
|
Modifier and Type | Method and Description |
---|---|
abstract T |
TextFormat.parse(CharSequence csq,
Cursor cursor)
Reads a portion of the specified
CharSequence from the
specified cursor position to produce an object. |
static boolean |
TypeFormat.parseBoolean(CharSequence csq,
Cursor cursor)
Parses the specified character sequence from the specified position
as a
boolean ignoring cases. |
static byte |
TypeFormat.parseByte(CharSequence csq,
Cursor cursor)
Parses the specified character sequence from the specified position
as a signed decimal
byte . |
static byte |
TypeFormat.parseByte(CharSequence csq,
int radix,
Cursor cursor)
Parses the specified character sequence from the specified position
as a signed
byte in the specified radix. |
static double |
TypeFormat.parseDouble(CharSequence csq,
Cursor cursor)
Parses the specified character sequence from the specified position
as a
double . |
static float |
TypeFormat.parseFloat(CharSequence csq,
Cursor cursor)
Parses the specified character sequence from the specified position
as a
float . |
static int |
TypeFormat.parseInt(CharSequence csq,
Cursor cursor)
Parses the specified character sequence from the specified position
as a signed decimal
int . |
static int |
TypeFormat.parseInt(CharSequence csq,
int radix,
Cursor cursor)
Parses the specified character sequence from the specified position
as a signed
int in the specified radix. |
static long |
TypeFormat.parseLong(CharSequence csq,
Cursor cursor)
Parses the specified character sequence from the specified position
as a signed decimal
long . |
static long |
TypeFormat.parseLong(CharSequence csq,
int radix,
Cursor cursor)
Parses the specified character sequence from the specified position
as a signed
long in the specified radix. |
static short |
TypeFormat.parseShort(CharSequence csq,
Cursor cursor)
Parses the specified character sequence from the specified position
as a signed decimal
short . |
static short |
TypeFormat.parseShort(CharSequence csq,
int radix,
Cursor cursor)
Parses the specified character sequence from the specified position
as a signed
short in the specified radix. |
Modifier and Type | Method and Description |
---|---|
FastCollection<Object> |
FastCollection.Format.parse(CharSequence csq,
Cursor cursor) |
Index |
Index.Decimal.parse(CharSequence csq,
Cursor cursor) |
Copyright © 2005-2013 Javolution. All Rights Reserved.