public abstract class LineEntityParser extends Object implements Function<String,Entity>
Interface for parsers that parse an entity from a line of text. A fresh line parser must be created for each pass through a file, as it may be stateful (e.g. tracking line numbers).
LineEntityParser()
Entity
apply(String input)
abstract Entity
parse(String line)
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
equals
public LineEntityParser()
public abstract Entity parse(String line)
Parse an entity from a line of text.
line
@Nullable public Entity apply(@Nullable String input)
apply
Function<String,Entity>