Package | Description |
---|---|
fmpp.dataloaders |
fmpp.DataLoader implementations. |
fmpp.models |
freemarker.template.TemplateModel implementations. |
fmpp.util |
Collection of more-less FMPP independent utility classes.
|
Modifier and Type | Method and Description |
---|---|
Object |
AntPropertyDataLoader.load(Engine eng,
List args,
org.apache.tools.ant.Task task) |
Object |
AntPropertiesDataLoader.load(Engine eng,
List args,
org.apache.tools.ant.Task task) |
protected Object |
CsvDataLoader.load(InputStream data) |
Modifier and Type | Method and Description |
---|---|
void |
CsvSequence.load(Reader in)
Loads data from text of CSV (or whatever similar) format.
|
Modifier and Type | Method and Description |
---|---|
static String |
StringUtil.ftlStringLiteralDec(String s)
FTL string literal decoding.
|
static BigDecimal |
StringUtil.stringToBigDecimal(String s)
Converts a string to
BigDecimal . |
static boolean |
StringUtil.stringToBoolean(String s) |
static TemplateDateModel |
StringUtil.stringToDate(String s,
TimeZone tz)
|
static TemplateDateModel |
StringUtil.stringToDateTime(String s,
TimeZone tz)
Parses a date-time of format
"yyyy-MM-dd H:mm:ss"
or "yyyy-MM-dd h:mm:ss a" or
"yyyy-MM-dd H:mm:ss z"
or "yyyy-MM-dd h:mm:ss a z" and returns it as
TemplateDateModel . |
static TemplateDateModel |
StringUtil.stringToTime(String s,
TimeZone tz)
Parses a time of format
"H:mm:ss"
or "h:mm:ss a" or "H:mm:ss z"
or "h:mm:ss a z" and returns it as
TemplateDateModel . |