Home | History | Annotate | Download | only in base

Lines Matching defs:LOWER_CAMEL

19 import static com.google.common.base.CaseFormat.LOWER_CAMEL;
49 LOWER_CAMEL.to(null, "");
53 LOWER_CAMEL.to(LOWER_HYPHEN, null);
69 assertEquals("foo", LOWER_HYPHEN.to(LOWER_CAMEL, "foo"));
70 assertEquals("fooBar", LOWER_HYPHEN.to(LOWER_CAMEL, "foo-bar"));
94 assertEquals("foo", LOWER_UNDERSCORE.to(LOWER_CAMEL, "foo"));
95 assertEquals("fooBar", LOWER_UNDERSCORE.to(LOWER_CAMEL, "foo_bar"));
109 assertEquals("foo", LOWER_CAMEL.to(LOWER_HYPHEN, "foo"));
110 assertEquals("foo-bar", LOWER_CAMEL.to(LOWER_HYPHEN, "fooBar"));
111 assertEquals("h-t-t-p", LOWER_CAMEL.to(LOWER_HYPHEN, "HTTP"));
115 assertEquals("foo", LOWER_CAMEL.to(LOWER_UNDERSCORE, "foo"));
116 assertEquals("foo_bar", LOWER_CAMEL.to(LOWER_UNDERSCORE, "fooBar"));
117 assertEquals("h_t_t_p", LOWER_CAMEL.to(LOWER_UNDERSCORE, "hTTP"));
121 assertEquals("foo", LOWER_CAMEL.to(LOWER_CAMEL, "foo"));
122 assertEquals("fooBar", LOWER_CAMEL.to(LOWER_CAMEL, "fooBar"));
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"));
132 assertEquals("FOO", LOWER_CAMEL.to(UPPER_UNDERSCORE, "foo"));
133 assertEquals("FOO_BAR", LOWER_CAMEL.to(UPPER_UNDERSCORE, "fooBar"));
147 assertEquals("foo", UPPER_CAMEL.to(LOWER_CAMEL, "Foo"));
148 assertEquals("fooBar", UPPER_CAMEL.to(LOWER_CAMEL, "FooBar"));
149 assertEquals("hTTP", UPPER_CAMEL.to(LOWER_CAMEL, "HTTP"));
175 assertEquals("foo", UPPER_UNDERSCORE.to(LOWER_CAMEL, "FOO"));
176 assertEquals("fooBar", UPPER_UNDERSCORE.to(LOWER_CAMEL, "FOO_BAR"));