Package | Description |
---|---|
eu.bandm.tscore.base |
Generic and low level data types and transformation algorithms,
to be used by very different applications of the
tscore
framework. |
Modifier and Type | Method and Description |
---|---|
static <D> Translet.StarParser<D> |
Translet.STAR(boolean greedy,
Translet.Parser<D> sub)
Factory method for repetitions which may be empty; greediness set by paraemter.
|
static <D> Translet.StarParser<D> |
Translet.STAR(boolean greedy,
Translet.Parser<D> sub,
@Opt Translet.Parser<?> sep)
Factory method for repetitions which may be empty, need the separator between
repetitions and are greedy accroding to the parameer value.
|
static <D> Translet.StarParser<D> |
Translet.STAR(eu.bandm.tscore.base.Translet.NonGreedy nonGreedy,
Translet.Parser<D> sub)
Factory method for repetitions which may be empty and parse non-greedily.
|
static <D> Translet.StarParser<D> |
Translet.STAR(Translet.Parser<D> sub)
Factory method for repetitions which may be empty and parse greedily.
|