public abstract static class Utils.StringUtils
extends java.lang.Object
Constructor and Description |
---|
StringUtils() |
Modifier and Type | Method and Description |
---|---|
static java.lang.String[] |
getLines(java.lang.String string)
Splits the string by new line characters, i.e.
|
static java.lang.String |
getMd5(java.lang.String string)
Generates an MD5 hash from the provided string.
|
static boolean |
isBoolean(java.lang.String string)
Determines whether or not the provided string represents a boolean value
(lower case, it will only return true for "true" or "false").
|
static boolean |
isHex(java.lang.String string)
Determines whether or not the provided string represents a hexadecimal
(hex) value using a "0x" prefix (for example, it will return true for values
like "0xFF", "0xaabbcc", "0x41AB", "0x0", but false for strings like
"56", "#FFAA13", "0xZVKK").
|
static boolean |
isInteger(java.lang.String string)
Determines whether or not the provided string represents an integer
value (for example, it will return true for values like "0", "1", "-7",
"42", but false for strings like "7.62", "Hello", "5+5" etc).
|
static boolean |
isNumeric(java.lang.String string)
Determines whether or not the provided string represents a numeric
value (integer or float, for example, it will return true for values
like "0", "1.426", "-100", "22.0", but false for strings like
"3k", "Bonjour", "7*7" etc).
|
static java.lang.String |
removeAllLeadingWhitespaces(java.lang.String string)
Removes all leading white spaces.
|
static java.lang.String |
removeAllNonWordCharacters(java.lang.String string) |
static java.lang.String |
removeAllTrailingWhitespaces(java.lang.String string) |
static java.lang.String |
removeAllWhitespaces(java.lang.String string) |
static java.lang.String |
vector3fToString(Vector3f vector3f) |
public static boolean isInteger(java.lang.String string)
string
- the string you want to check.public static boolean isNumeric(java.lang.String string)
string
- the string you want to check.public static boolean isHex(java.lang.String string)
string
- the string you want to check.public static boolean isBoolean(java.lang.String string)
string
- the string you want to check.public static java.lang.String removeAllNonWordCharacters(java.lang.String string)
public static java.lang.String removeAllWhitespaces(java.lang.String string)
public static java.lang.String removeAllLeadingWhitespaces(java.lang.String string)
string
- the string you want to remove the leading white spaces from.public static java.lang.String removeAllTrailingWhitespaces(java.lang.String string)
public static java.lang.String[] getLines(java.lang.String string)
string
- the string you want to split, e.g. the text from a text file.public static java.lang.String getMd5(java.lang.String string)
string
- the string you want to turn into an MD5 hash.public static java.lang.String vector3fToString(Vector3f vector3f)