Class SchemaHelper


  • public final class SchemaHelper
    extends Object
    • Method Detail

      • dashToCamelCase

        public static String dashToCamelCase​(String text)
        Converts the string from dash format into camel case (hello-great-world -> helloGreatWorld)
        Parameters:
        text - the string
        Returns:
        the string camel cased
      • camelCaseToDash

        public static String camelCaseToDash​(String text)
        Converts the string from camel case into dash format (helloGreatWorld -> hello-great-world)
        Parameters:
        text - the string
        Returns:
        the string camel cased