Class CaseFormatUtils

java.lang.Object
org.assertj.core.util.introspection.CaseFormatUtils

public class CaseFormatUtils extends Object
Utility class for conversion between different case formats
  • Method Details

    • toCamelCase

      public static String toCamelCase(String s)
      Converts an input string into camelCase.

      The input string may use any of the well known case styles: Pascal, Snake, Kebab or even Camel. Already camelCased strings will be returned as is. Mix and match is also an option; the algorithm will try its best to give an acceptable answer. Mixed case will be preserved, i.e assertThat(toCamelCase("miXedCAse")).isEqualTo("miXedCAse")

      Parameters:
      s - the string to be converted
      Returns:
      the input string converted to camelCase