Skip to content

Instantly share code, notes, and snippets.

@digitalconceptvisuals
Created July 30, 2020 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save digitalconceptvisuals/404f9cfb9fa5c1b8a4b344539a29718f to your computer and use it in GitHub Desktop.
Save digitalconceptvisuals/404f9cfb9fa5c1b8a4b344539a29718f to your computer and use it in GitHub Desktop.
/**
* interface specifies just one method
* which converts the case and returns back
*
* Various converters will implement this
*. lower, camel, proper, snake etc
*/
interface CaseConverter {
String convert(String... words);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment