|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.myfaces.trinidad.util.FastMessageFormat
public class FastMessageFormat
The FastMessageFormat class is a greatly reduced version of the java.text.MessageFormat class. It's also much faster and much less expensive to create, which is especially valuable when it is created and thrown away many times - a common use case in web applications.
The only syntax supported by this class is simple index-based replacement, namely:
some{1}text{0}here{2}andthereUnlike MessageFormat, single quotes are NOT used for escaping. So, the following pattern could be used to include a left bracket:
some{text{0}
Constructor Summary | |
---|---|
FastMessageFormat(String formatString)
Creates a FastMessageFormat based on the given format string. |
Method Summary | |
---|---|
String |
format(Object[] source)
This formatter will only replace patterns of the type "{[0-9]}" for which there is an associated token. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public FastMessageFormat(String formatString)
Method Detail |
---|
public String format(Object[] source)
source
- an array of strings (tokens)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |