public final class GwtHelper extends Object
Modifier and Type | Field and Description |
---|---|
(package private) static String |
LINE_SEPARATOR
The system specific line separator.
|
Modifier | Constructor and Description |
---|---|
private |
GwtHelper()
Construction prohibited.
|
Modifier and Type | Method and Description |
---|---|
static String |
getSystemProperty(String propertyName)
Indirection for
System.getProperty(String) . |
static String |
toLowerCase(String string)
Indirection for
String.toLowerCase(Locale) with Locale.US . |
static String |
toLowerCase(String string,
Locale locale)
Indirection for
String.toLowerCase(Locale) . |
static String |
toUpperCase(String string)
Indirection for
String.toUpperCase(Locale) with Locale.US . |
static String |
toUpperCase(String string,
Locale locale)
Indirection for
String.toUpperCase(Locale) . |
static final String LINE_SEPARATOR
public static String getSystemProperty(String propertyName)
System.getProperty(String)
.propertyName
- is the name of the requested property.System.getProperty(String)
.public static String toLowerCase(String string)
String.toLowerCase(Locale)
with Locale.US
.string
- is the String
.String.toLowerCase(Locale)
.public static String toLowerCase(String string, Locale locale)
String.toLowerCase(Locale)
.string
- is the String
.locale
- is the Locale
.String.toLowerCase(Locale)
.public static String toUpperCase(String string, Locale locale)
String.toUpperCase(Locale)
.string
- is the String
.locale
- is the Locale
.String.toUpperCase(Locale)
.public static String toUpperCase(String string)
String.toUpperCase(Locale)
with Locale.US
.string
- is the String
.String.toUpperCase(Locale)
.Copyright © 2001–2016 mmm-Team. All rights reserved.