Interface CharacterParser
-
- All Known Implementing Classes:
JavaCharacterParser,PhpStringCharacterParser
public interface CharacterParser
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description SourceCharactergetCurrent()booleanisAtEnd()default booleanisNotAtEnd()voidmoveNext()voidresetTo(int index)
-
-
-
Method Detail
-
moveNext
void moveNext()
-
getCurrent
SourceCharacter getCurrent()
-
isAtEnd
boolean isAtEnd()
-
isNotAtEnd
default boolean isNotAtEnd()
-
resetTo
void resetTo(int index)
-
-