Uses of Class
org.jparsec.ParseContext.ErrorType
-
Packages that use ParseContext.ErrorType Package Description org.jparsec Provides core Parser implementations for parser combinator logic. -
-
Uses of ParseContext.ErrorType in org.jparsec
Fields in org.jparsec declared as ParseContext.ErrorType Modifier and Type Field Description private ParseContext.ErrorType
ParseContext. currentErrorType
private ParseContext.ErrorType
ParseContext. overrideErrorType
Methods in org.jparsec that return ParseContext.ErrorType Modifier and Type Method Description static ParseContext.ErrorType
ParseContext.ErrorType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ParseContext.ErrorType[]
ParseContext.ErrorType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jparsec with parameters of type ParseContext.ErrorType Modifier and Type Method Description (package private) void
ParseContext. raise(ParseContext.ErrorType type, java.lang.Object subject)
private void
ParseContext. setErrorState(int errorAt, int errorIndex, ParseContext.ErrorType errorType)
private void
ParseContext. setErrorState(int errorAt, int errorIndex, ParseContext.ErrorType errorType, java.util.List<java.lang.Object> errors)
-