|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectde.unkrig.commons.text.CamelCase
public final class CamelCase
A collection of utility methods related to camel case.
| Method Summary | |
|---|---|
static java.lang.String |
cat(java.lang.String... strings)
Concatenates the given strings, with the first letter of each string except the first string
capitalized. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
|---|
public static java.lang.String cat(java.lang.String... strings)
strings, with the first letter of each string except the first string
capitalized.
Examples:
"list", "length" | => | "listLength" |
"My", "class" | => | "MyClass" |
"oneTwo", "threeFour" | => | "oneTwoThreefour" |
java.lang.ArrayIndexOutOfBoundsException - strings.length was zero
java.lang.IndexOutOfBoundsException - One of the strings has zero length
java.lang.NullPointerException - One of the strings was null
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||