|
String | compile (String wiki) |
|
String | wiki (String wiki) |
|
String | trunc (String text, int max) |
|
String | html (String html, int max) |
|
String | htmlPlain (String html, int max) |
|
String | reduce (long value) |
|
long | expand (String value) |
|
String | i (String value) |
|
String | i (String value, int count) |
|
String | f (String value, Object... arguments) |
|
String | root () |
|
Configurator | configurator () |
|
String | cfgs (String key) |
|
Integer | cfgi (String key) |
|
Long | cfgl (String key) |
|
Double | cfgd (String key) |
|
Boolean | cfgb (String key) |
|
String | getName () |
|
|
static boolean | isActor (String actor) |
|
static boolean | isActor (IContact contact, String actor) |
|
static boolean | isActorFor (Object entity, String actor) |
|
static boolean | isActorFor (IContact contact, Object entity, String actor) |
|
static boolean | isActorFor (IElephantEntity iee, String actor) |
|
static boolean | isActorFor (IContact contact, IElephantEntity iee, String actor) |
|
static boolean | eval (String value) |
|
static boolean | eval (IContact contact, String value) |
|
static boolean | evalFor (Object entity, String value) |
|
static boolean | evalFor (IContact contact, Object entity, String value) |
|
static boolean | evalFor (IElephantEntity iee, String value) |
|
static boolean | evalFor (IContact contact, IElephantEntity iee, String value) |
|
- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 41 of file ParserHelper.java.
◆ cfgb()
Boolean org.turro.parser.ParserHelper.cfgb |
( |
String |
key | ) |
|
Definition at line 119 of file ParserHelper.java.
120 return Configurator.instance().asBoolean(key);
◆ cfgd()
Double org.turro.parser.ParserHelper.cfgd |
( |
String |
key | ) |
|
◆ cfgi()
Integer org.turro.parser.ParserHelper.cfgi |
( |
String |
key | ) |
|
Definition at line 107 of file ParserHelper.java.
108 return Configurator.instance().asInteger(key);
◆ cfgl()
Long org.turro.parser.ParserHelper.cfgl |
( |
String |
key | ) |
|
◆ cfgs()
String org.turro.parser.ParserHelper.cfgs |
( |
String |
key | ) |
|
◆ compile()
String org.turro.parser.ParserHelper.compile |
( |
String |
wiki | ) |
|
◆ configurator()
Configurator org.turro.parser.ParserHelper.configurator |
( |
| ) |
|
◆ eval() [1/2]
static boolean org.turro.parser.ParserHelper.eval |
( |
IContact |
contact, |
|
|
String |
value |
|
) |
| |
|
static |
◆ eval() [2/2]
static boolean org.turro.parser.ParserHelper.eval |
( |
String |
value | ) |
|
|
static |
◆ evalFor() [1/4]
Definition at line 171 of file ParserHelper.java.
172 return Scripting.evalFor(contact, iee, value);
◆ evalFor() [2/4]
static boolean org.turro.parser.ParserHelper.evalFor |
( |
IContact |
contact, |
|
|
Object |
entity, |
|
|
String |
value |
|
) |
| |
|
static |
Definition at line 163 of file ParserHelper.java.
164 return Scripting.evalFor(contact, entity, value);
◆ evalFor() [3/4]
static boolean org.turro.parser.ParserHelper.evalFor |
( |
IElephantEntity |
iee, |
|
|
String |
value |
|
) |
| |
|
static |
◆ evalFor() [4/4]
static boolean org.turro.parser.ParserHelper.evalFor |
( |
Object |
entity, |
|
|
String |
value |
|
) |
| |
|
static |
◆ expand()
long org.turro.parser.ParserHelper.expand |
( |
String |
value | ) |
|
◆ f()
String org.turro.parser.ParserHelper.f |
( |
String |
value, |
|
|
Object... |
arguments |
|
) |
| |
◆ getName()
String org.turro.parser.ParserHelper.getName |
( |
| ) |
|
◆ html()
String org.turro.parser.ParserHelper.html |
( |
String |
html, |
|
|
int |
max |
|
) |
| |
Definition at line 59 of file ParserHelper.java.
60 return HtmlContent.truncate(
html, max);
String html(String html, int max)
◆ htmlPlain()
String org.turro.parser.ParserHelper.htmlPlain |
( |
String |
html, |
|
|
int |
max |
|
) |
| |
◆ i() [1/2]
String org.turro.parser.ParserHelper.i |
( |
String |
value | ) |
|
◆ i() [2/2]
String org.turro.parser.ParserHelper.i |
( |
String |
value, |
|
|
int |
count |
|
) |
| |
◆ isActor() [1/2]
static boolean org.turro.parser.ParserHelper.isActor |
( |
IContact |
contact, |
|
|
String |
actor |
|
) |
| |
|
static |
◆ isActor() [2/2]
static boolean org.turro.parser.ParserHelper.isActor |
( |
String |
actor | ) |
|
|
static |
◆ isActorFor() [1/4]
Definition at line 145 of file ParserHelper.java.
146 return Actors.isActorFor(contact, iee, actor);
◆ isActorFor() [2/4]
static boolean org.turro.parser.ParserHelper.isActorFor |
( |
IContact |
contact, |
|
|
Object |
entity, |
|
|
String |
actor |
|
) |
| |
|
static |
Definition at line 137 of file ParserHelper.java.
138 return Actors.isActorFor(contact, entity, actor);
◆ isActorFor() [3/4]
static boolean org.turro.parser.ParserHelper.isActorFor |
( |
IElephantEntity |
iee, |
|
|
String |
actor |
|
) |
| |
|
static |
◆ isActorFor() [4/4]
static boolean org.turro.parser.ParserHelper.isActorFor |
( |
Object |
entity, |
|
|
String |
actor |
|
) |
| |
|
static |
◆ reduce()
String org.turro.parser.ParserHelper.reduce |
( |
long |
value | ) |
|
◆ root()
String org.turro.parser.ParserHelper.root |
( |
| ) |
|
◆ trunc()
String org.turro.parser.ParserHelper.trunc |
( |
String |
text, |
|
|
int |
max |
|
) |
| |
◆ wiki()
String org.turro.parser.ParserHelper.wiki |
( |
String |
wiki | ) |
|
The documentation for this class was generated from the following file: