Uses of Enum Class
eu.svjatoslav.commons.string.tokenizer.Terminator.TerminationStrategy
Packages that use Terminator.TerminationStrategy
Package
Description
Provides a regex-based tokenizer for parsing structured text.
-
Uses of Terminator.TerminationStrategy in eu.svjatoslav.commons.string.tokenizer
Fields in eu.svjatoslav.commons.string.tokenizer declared as Terminator.TerminationStrategyModifier and TypeFieldDescriptionTerminator.terminationThe strategy for handling matched tokens.Methods in eu.svjatoslav.commons.string.tokenizer that return Terminator.TerminationStrategyModifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static Terminator.TerminationStrategy[]Terminator.TerminationStrategy.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in eu.svjatoslav.commons.string.tokenizer with parameters of type Terminator.TerminationStrategyModifier and TypeMethodDescriptionTokenizer.addTerminator(Terminator.TerminationStrategy terminationStrategy, String regexp) Adds a terminator with a termination strategy and regex pattern.Tokenizer.addTerminator(Terminator.TerminationStrategy terminationStrategy, String regexp, String group) Adds a terminator with a termination strategy, regex pattern, and group name.Constructors in eu.svjatoslav.commons.string.tokenizer with parameters of type Terminator.TerminationStrategyModifierConstructorDescriptionTerminator(Terminator.TerminationStrategy termination, String regexp, String group) Creates a new terminator with the specified configuration.