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 | Field and Description |
---|---|
protected Translet.PlusParser<D> |
Translet.StarParser.plus |
Modifier and Type | Method and Description |
---|---|
static <D> Translet.PlusParser<D> |
Translet.PLUS(boolean greedy,
Translet.Parser<D> sub)
Factory method for repetitions which may not be empty; greediness set by paraemter.
|
static <D> Translet.PlusParser<D> |
Translet.PLUS(boolean greedy,
Translet.Parser<D> sub,
@Opt Translet.Parser<?> sep)
Factory method for repetitions which may not be empty, need the separator between
repetitions and are greedy according to the parameter value.
|
static <D> Translet.PlusParser<D> |
Translet.PLUS(eu.bandm.tscore.base.Translet.NonGreedy nonGreedy,
Translet.Parser<D> sub)
Factory method for repetitions which may not be empty and parse non-greedily.
|
static <D> Translet.PlusParser<D> |
Translet.PLUS(Translet.Parser<D> sub)
Factory method for repetitions which may not be empty and parse greedily.
|