Searched refs:UPPER_CAMEL (Results 1 - 2 of 2) sorted by relevance

/external/guava/guava-tests/test/com/google/common/base/
H A DCaseFormatTest.java22 import static com.google.common.base.CaseFormat.UPPER_CAMEL;
74 assertEquals("Foo", LOWER_HYPHEN.to(UPPER_CAMEL, "foo"));
75 assertEquals("FooBar", LOWER_HYPHEN.to(UPPER_CAMEL, "foo-bar"));
99 assertEquals("Foo", LOWER_UNDERSCORE.to(UPPER_CAMEL, "foo"));
100 assertEquals("FooBar", LOWER_UNDERSCORE.to(UPPER_CAMEL, "foo_bar"));
126 assertEquals("Foo", LOWER_CAMEL.to(UPPER_CAMEL, "foo"));
127 assertEquals("FooBar", LOWER_CAMEL.to(UPPER_CAMEL, "fooBar"));
128 assertEquals("HTTP", LOWER_CAMEL.to(UPPER_CAMEL, "hTTP"));
137 assertEquals("foo", UPPER_CAMEL.to(LOWER_HYPHEN, "Foo"));
138 assertEquals("foo-bar", UPPER_CAMEL
[all...]
/external/guava/guava/src/com/google/common/base/
H A DCaseFormat.java47 UPPER_CAMEL(CharMatcher.inRange('A', 'Z'), ""), enum constant in enum:CaseFormat
146 case UPPER_CAMEL:

Completed in 99 milliseconds