Package 

Class StringExtensionsKt

    • Method Summary

      Modifier and Type Method Description
      final static String snakeToLowerCamelCase(String $self) Converts string written in snake case to String in camel case with the first symbol in lower case.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • snakeToLowerCamelCase

         final static String snakeToLowerCamelCase(String $self)

        Converts string written in snake case to String in camel case with the first symbol in lower case. For example string "created_at_some_time" is converted to "createdAtSomeTime".