string-notation / de.joshuagleitze.stringnotation / ScreamingSnakeCase

ScreamingSnakeCase

object ScreamingSnakeCase : BaseStringNotation

The SCREAMING_SNAKE_CASE notation.

Functions

printBeforeInnerPart

Allows to print characters in front of parts that are not the first part. The default implementation prints nothing.

fun printBeforeInnerPart(index: Int, part: String): String

transformPartAfterParse

Transforms a parsed part after it has been read. The default implementation does not change the part.

fun transformPartAfterParse(index: Int, part: String): String

transformPartToPrint

Allows to transform a part before it is being printed. The default implementation does not modify the part in any way.

fun transformPartToPrint(index: Int, part: String): String