Enum Class StringBasedErpType.CharCasing

java.lang.Object
java.lang.Enum<StringBasedErpType.CharCasing>
com.sap.cloud.sdk.s4hana.serialization.StringBasedErpType.CharCasing
All Implemented Interfaces:
Serializable, Comparable<StringBasedErpType.CharCasing>, Constable
Enclosing class:
StringBasedErpType<T extends StringBasedErpType<T>>

public static enum StringBasedErpType.CharCasing extends Enum<StringBasedErpType.CharCasing>
The casing of the contained value to be used by a StringBasedErpType.
  • Enum Constant Details

    • DO_NOTHING

      public static final StringBasedErpType.CharCasing DO_NOTHING
      Does not change the casing of the given String.
    • UPPER_CASE

      public static final StringBasedErpType.CharCasing UPPER_CASE
      Changes all letters of the given String to upper-case, depending on the given Locale.
    • LOWER_CASE

      public static final StringBasedErpType.CharCasing LOWER_CASE
      Changes all letters of the given String to lower-case, depending on the given Locale.
  • Method Details

    • values

      public static StringBasedErpType.CharCasing[] 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 StringBasedErpType.CharCasing 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