Package | Description |
---|---|
javolution.text |
Provides classes and interfaces to handle text.
|
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.
|
static Cursor |
Cursor.newInstance()
Returns a factory produced instance which can be
recycled
after usage. |
Modifier and Type | Method and Description |
---|---|
abstract T |
TextFormat.parse(CharSequence csq,
Cursor cursor)
Parses a portion of the specified
CharSequence from the
specified 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 . |
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,
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,
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,
int radix,
Cursor cursor)
Parses the specified character sequence from the specified position
as a signed
short in the specified radix. |
static void |
Cursor.recycle(Cursor cursor)
Recycles the specified factory
produced cursor. |
Copyright © 2005–2019 Javolution. All rights reserved.