XSLHelper

From GreenVulcano Wiki
Revision as of 15:02, 22 February 2012 by D.franco (talk | contribs) (Created page with "Class FQN: '''it.greenvulcano.util.xml.XSLTUtils''' ==Following the XSLTUtils public static methods== <syntaxhighlight lang="java5"> /** * @param str * @return the string in upp...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Class FQN: it.greenvulcano.util.xml.XSLTUtils

Following the XSLTUtils public static methods

/**
* @param str
* @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)