string-notation / de.joshuagleitze.stringnotation / JavaConstantName

JavaConstantName

object JavaConstantName : StringNotation

A notation for static final fields in Java. This notation is like ScreamingSnakeCase, but when printing, it will drop any character that is not allowed in a Java identifier. If the result is a Java keyword, _ will be appended to it.

Allowed characters are determined using Character.isJavaIdentifierStart and Character.isJavaIdentifierPart. Keywords are detected using SourceVersion.isKeyword.

Functions

print

Transforms a Word into a string that is formatted according to this notation.

fun print(word: Word): String

toString

fun toString(): String