Enum Class CaseFormat.Case

java.lang.Object
java.lang.Enum<CaseFormat.Case>
com.hybris.backoffice.solrsearch.resolvers.CaseFormat.Case
All Implemented Interfaces:
Serializable, Comparable<CaseFormat.Case>, Constable
Enclosing class:
CaseFormat

public static enum CaseFormat.Case extends Enum<CaseFormat.Case>
Change of case to be made
  • Enum Constant Details

    • TO_LOWER

      public static final CaseFormat.Case TO_LOWER
      To lower case StringUtils.lowerCase(String)
    • TO_UPPER

      public static final CaseFormat.Case TO_UPPER
      To upper case StringUtils.upperCase(String)
    • SWAP

      public static final CaseFormat.Case SWAP
      Swap case StringUtils.swapCase(String)
  • Method Details

    • values

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

      public static CaseFormat.Case valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • apply

      public String apply(String string)