|
|
Line 1: |
Line 1: |
− | Class FQN: '''it.greenvulcano.util.xml.XSLTUtils'''
| + | DRAFT... |
| | | |
− | ==Following the XSLTUtils public static methods==
| + | There are three ways to implement an XSLHelper: |
− | <syntaxhighlight lang="java5">
| + | * [[XSLTUtils]] : date/time and strings manipulation |
− | /**
| + | * [[GenericRetriever]] : data conversion by querying the database |
− | * @param str
| + | * [[JavaScriptRetriever]] : data manipulation by executing JavaScript code |
− | * @return the string in upper case
| |
− | */
| |
− | public static synchronized String upperCase(String str)
| |
− | | |
− | /**
| |
− | * @param str
| |
− | * @return the string in lower case
| |
− | */
| |
− | public static synchronized String lowerCase(String str)
| |
− | | |
− | /**
| |
− | * @param str
| |
− | * @param width | |
− | * @param padding
| |
− | * @return the string left filled with padding character passed
| |
− | */
| |
− | public static synchronized String leftPad(String str, int width, char padding)
| |
− | | |
− | /**
| |
− | * @param str
| |
− | * @param width
| |
− | * @param padding
| |
− | * @return the string right filled with padding character passed
| |
− | */
| |
− | public static synchronized String rightPad(String str, int width, char padding)
| |
− | | |
− | /**
| |
− | * @param str
| |
− | * @return the trimmed string
| |
− | *
| |
− | * @see java.lang.String#trim()
| |
− | */
| |
− | public static synchronized String trim(String str)
| |
− | | |
− | /**
| |
− | * @param str
| |
− | * @param find
| |
− | * @param replace
| |
− | * @return the replaced string
| |
− | */
| |
− | public static String replace(String str, String find, String replace)
| |
− | | |
− | /**
| |
− | * @see it.greenvulcano.util.xml.XMLUtils#serializeDOM_S(Node, String)
| |
− | */
| |
− | public static String serializeNode(Node node, String encoding)
| |
− | | |
− | /**
| |
− | * @see it.greenvulcano.util.xml.XSLTUtils#convertDate(String, String, String)
| |
− | */
| |
− | public static String convertDate(String date, String formatIn, String formatOut)
| |
− | | |
− | /** | |
− | * @see it.greenvulcano.util.xml.XSLTUtils#convertDate(String, String, String, String, String) | |
− | */
| |
− | public static String convertDate(String date, String formatIn, String tZoneIn, String formatOut, String tZoneOut)
| |
− | | |
− | /**
| |
− | * @see it.greenvulcano.util.xml.XSLTUtils#nowToString(String)
| |
− | */
| |
− | public static String nowToString(String formatOut)
| |
− | | |
− | /**
| |
− | * @see it.greenvulcano.util.xml.XSLTUtils#nowToString(String, String)
| |
− | */
| |
− | public static String nowToString(String tZoneOut, String formatOut)
| |
− | </syntaxhighlight>
| |