Uses of Enum
jflex.l10n.ErrorMessages
Packages that use ErrorMessages
-
Uses of ErrorMessages in jflex.core
Methods in jflex.core with parameters of type ErrorMessagesModifier and TypeMethodDescription(package private) voidLexParse.CUP$LexParse$actions.fatalError(ErrorMessages message) (package private) voidLexParse.CUP$LexParse$actions.fatalError(ErrorMessages message, int line, int col) (package private) voidLexParse.CUP$LexParse$actions.syntaxError(ErrorMessages message) (package private) voidLexParse.CUP$LexParse$actions.syntaxError(ErrorMessages message, int line) (package private) voidLexParse.CUP$LexParse$actions.syntaxError(ErrorMessages message, int line, int col) (package private) voidLexParse.CUP$LexParse$actions.warning(ErrorMessages message, int line, int col) -
Uses of ErrorMessages in jflex.l10n
Fields in jflex.l10n with type parameters of type ErrorMessagesModifier and TypeFieldDescriptionprivate static final Set<ErrorMessages> ErrorMessages.configurableWarningsMethods in jflex.l10n that return ErrorMessagesModifier and TypeMethodDescriptionstatic ErrorMessagesReturns the enum constant of this type with the specified name.static ErrorMessages[]ErrorMessages.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in jflex.l10n with parameters of type ErrorMessagesModifier and TypeMethodDescriptionstatic StringErrorMessages.get(ErrorMessages msg) Returns a localized representation of the error messages.static StringErrorMessages.get(ErrorMessages msg, Object... args) Returns an error message.static booleanErrorMessages.isConfigurableWarning(ErrorMessages msg) Check whether a warning is configurable. -
Uses of ErrorMessages in jflex.logging
Methods in jflex.logging with parameters of type ErrorMessagesModifier and TypeMethodDescriptionstatic voidOut.error(File file, ErrorMessages message, int line, int column) print error message with location informationstatic voidOut.error(ErrorMessages message) print error message (code)static voidOut.error(ErrorMessages message, File file) IO error message for a file (displays file name in parentheses).static voidOut.error(ErrorMessages message, String data) print error message with datastatic voidOut.println(ErrorMessages message, int data) Report generation progress.static voidOut.println(ErrorMessages message, String data) Report generation progress.static voidOut.time(ErrorMessages message, Timer time) Report time statistic data.static voidOut.warning(File file, ErrorMessages message, int line, int column) print warning message with location informationstatic voidOut.warning(ErrorMessages message) print a warning message without line informationstatic voidOut.warning(ErrorMessages message, int line) Print a warning with line information.static voidOut.warning(ErrorMessages message, int line, Object... args) Print a warning with line information and arguments.static voidOut.warning(ErrorMessages message, Object... args) Print a warning message with arguments without line information -
Uses of ErrorMessages in jflex.option
Fields in jflex.option with type parameters of type ErrorMessagesModifier and TypeFieldDescriptionprivate static final Set<ErrorMessages> Options.suppressedWarningsWarnings that should not be printed.Methods in jflex.option with parameters of type ErrorMessagesModifier and TypeMethodDescriptionstatic voidOptions.enable(ErrorMessages msg) Configure the given warning message to be enabled.static booleanOptions.isSuppressed(ErrorMessages msg) Returns true if the given warning message is suppressed (should not be printed and counted).static voidOptions.suppress(ErrorMessages msg) Configure the given warning message to be suppressed. -
Uses of ErrorMessages in jflex.scanner
Fields in jflex.scanner declared as ErrorMessagesConstructors in jflex.scanner with parameters of type ErrorMessagesModifierConstructorDescriptionprivateScannerException(File file, String text, ErrorMessages message, int line, int column) ScannerException(File file, ErrorMessages message) Creates a new ScannerException for a file with a message only.ScannerException(File file, ErrorMessages message, int line) Creates a new ScannerException for a file with a message and line number.ScannerException(File file, ErrorMessages message, int line, int column) Creates a new ScannerException with a message, line number and column.ScannerException(ErrorMessages message) Creates a new ScannerException with a message only.ScannerException(ErrorMessages message, int line) Creates a new ScannerException with a message and line number.