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

/external/guava/guava-tests/test/com/google/common/base/
H A DCaseFormatTest.java21 import static com.google.common.base.CaseFormat.LOWER_UNDERSCORE;
64 assertEquals("foo", LOWER_HYPHEN.to(LOWER_UNDERSCORE, "foo"));
65 assertEquals("foo_bar", LOWER_HYPHEN.to(LOWER_UNDERSCORE, "foo-bar"));
84 assertEquals("foo", LOWER_UNDERSCORE.to(LOWER_HYPHEN, "foo"));
85 assertEquals("foo-bar", LOWER_UNDERSCORE.to(LOWER_HYPHEN, "foo_bar"));
89 assertEquals("foo", LOWER_UNDERSCORE.to(LOWER_UNDERSCORE, "foo"));
90 assertEquals("foo_bar", LOWER_UNDERSCORE.to(LOWER_UNDERSCORE, "foo_bar"));
94 assertEquals("foo", LOWER_UNDERSCORE
[all...]
/external/guava/guava/src/com/google/common/base/
H A DCaseFormat.java37 LOWER_UNDERSCORE(CharMatcher.is('_'), "_"), enum constant in enum:CaseFormat
83 case LOWER_UNDERSCORE:
89 case LOWER_UNDERSCORE:
101 case LOWER_UNDERSCORE:
142 case LOWER_UNDERSCORE:

Completed in 101 milliseconds