|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object edu.sdsc.inca.util.StringMethods
A class of useful static utility methods that really fit elsewhere.
Constructor Summary | |
StringMethods()
|
Method Summary | |
static int |
compareTo(java.lang.String left,
java.lang.String right)
Returns an indicator of the relationship between two operands. |
static java.lang.String |
fileContents(java.lang.String path)
Returns the contents of a specified file as a String, with lines from the file delimited by newlines (\n). |
static java.lang.String |
join(java.lang.String separator,
java.lang.String[] values)
Joins the separate strings in values into a single string with fields separated by the value of separator and returns that new string. |
static void |
sendEmail(java.lang.String address,
java.lang.String subject,
java.lang.String message)
Send a notification email to the specified email address. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public StringMethods()
Method Detail |
public static int compareTo(java.lang.String left, java.lang.String right)
left
- the left operandright
- the right operand
public static java.lang.String fileContents(java.lang.String path) throws java.io.IOException
path
- the path to the file to read
java.io.IOException
- on an open/read errorpublic static java.lang.String join(java.lang.String separator, java.lang.String[] values)
separator
- The string that will separate the values.values
- The list of strings that should be joined
public static void sendEmail(java.lang.String address, java.lang.String subject, java.lang.String message)
address
- The email address to send the email to.subject
- The subject of the email.message
- The message body of the email
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |