|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Cursor | |
---|---|
javolution.text | Provides classes and interfaces to handle text. |
Uses of Cursor in javolution.text |
---|
Methods in javolution.text that return Cursor | |
---|---|
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. |
Methods in javolution.text with parameters of type Cursor | |
---|---|
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. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |