Package sk.antons.json.source
Interface JsonSource
-
- All Known Implementing Classes:
ReaderSource,StringSource
public interface JsonSourceJson source provider.- Author:
- antons
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intcurrent()current charvoidmove()move to next charintnext()next charStringrecordedContent()last recorded contentintstartRecording()starts recording of charactersintstopRecording()stops recording of characters
-
-
-
Method Detail
-
current
int current()
current char- Returns:
- current char
-
next
int next()
next char- Returns:
- next char
-
move
void move()
move to next char
-
startRecording
int startRecording()
starts recording of characters- Returns:
- position of recording.
-
stopRecording
int stopRecording()
stops recording of characters- Returns:
- current position.
-
recordedContent
String recordedContent()
last recorded content- Returns:
-
-