Enum CaseStyle

java.lang.Object
java.lang.Enum<CaseStyle>
org.refcodes.textual.CaseStyle
All Implemented Interfaces:
Serializable, Comparable<CaseStyle>, java.lang.constant.Constable

public enum CaseStyle
extends Enum<CaseStyle>
Predefined CaseStyle "implementations" (in terms of methods such as toCaseStyle(String)) making use of the CaseStyleBuilder.
  • Enum Constant Details

    • NONE

      public static final CaseStyle NONE
    • CAMEL_CASE

      public static final CaseStyle CAMEL_CASE
    • PASCAL_CASE

      public static final CaseStyle PASCAL_CASE
    • SNAKE_CASE

      public static final CaseStyle SNAKE_CASE
    • KEBAB_CASE

      public static final CaseStyle KEBAB_CASE
    • SNAKE_UPPER_CASE

      public static final CaseStyle SNAKE_UPPER_CASE
    • KEBAB_UPPER_CASE

      public static final CaseStyle KEBAB_UPPER_CASE
  • Method Details

    • values

      public static CaseStyle[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static CaseStyle valueOf​(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • toCaseStyle

      public String toCaseStyle​(String aText)
      Converts the given text into the according CaseStyle.
      Parameters:
      aText - The text to be converted to the according case style.
      Returns:
      the string