Google Guava Goodness: Converting Between ASCII Case Conventions
Join the DZone community and get the full member experience.
Join For FreeThe Google Guava libraries contains useful utility classes and methods. If we want to convert between ASCII case conventions we can use the CaseFormat class. The class defines constants for upper and lower case CamelCase, upper and lower case hyphenated and upper case underscore. This means we can convert UPPER_VALUE to upper-value with a simple line of code.
import static com.google.common.base.CaseFormat.*; assert LOWER_CAMEL.to(UPPER_UNDERSCORE, "lowerCase").equals("LOWER_CASE"); assert LOWER_HYPHEN.to(LOWER_UNDERSCORE, "manual-index").equals("manual_index"); assert UPPER_CAMEL.to(LOWER_UNDERSCORE, "UpperCase").equals("upper_case")
(Sample with Google Guava version 13.0.1)
Published at DZone with permission of Hubert Klein Ikkink, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments