| Modifier and Type | Method and Description |
|---|---|
ParseText |
ParseText.back(int n)
Decrement the index by n.
|
ParseText |
ParseText.reset()
Reset the index to the start of the text.
|
ParseText |
ParseText.revert()
Undo the effect of the last match operation.
|
ParseText |
ParseText.setIndex(int index)
Set the index to a specified value.
|
ParseText |
ParseText.setStart(int start)
Set the start index (the index of the start of the last matched sequence).
|
ParseText |
ParseText.setText(CharSequence text)
Set the text.
|
ParseText |
ParseText.setText(CharSequence text,
int index)
Set the text and the index within the text.
|
ParseText |
ParseText.skip(int n)
Increment the index by n.
|
ParseText |
ParseText.skipPast(IntPredicate comparison)
Increment the index past any characters matching a given comparison function.
|
ParseText |
ParseText.skipSpaces()
Increment the index past zero or more spaces.
|
ParseText |
ParseText.skipTo(char ch)
Increment the index to the next occurrence of the given character.
|
ParseText |
ParseText.skipTo(CharSequence target)
Increment the index to the next occurrence of the stopper sequence.
|
ParseText |
ParseText.skipTo(IntPredicate comparison)
Increment the index past any characters matching a given comparison function.
|
ParseText |
ParseText.skipToAnyOf(char... array)
Increment the index to the next occurrence of any of the given characters.
|
ParseText |
ParseText.skipToAnyOf(CharSequence stoppers)
Increment the index to the next occurrence of any of the given characters.
|
ParseText |
ParseText.skipToEnd()
Increment the index directly to the end of the text.
|
ParseText |
ParseText.skipToSpace()
Increment the index to the next space.
|
Copyright © 2020. All rights reserved.