Enum Class StringCase

java.lang.Object
java.lang.Enum<StringCase>
com.ptc.windchill.annotations.metadata.StringCase
All Implemented Interfaces:
Serializable, Comparable<StringCase>, Constable

public enum StringCase extends Enum<StringCase>
Specifies the case to force the corresponding string to.

Rose conversion note: Corresponds to Class Attribute Specification -> Windchill -> StringCase.

Supported API: true

  • Enum Constant Details

    • DEFAULT

      public static final StringCase DEFAULT
      Mixed case -- string will be stored exactly as it was provided.

      Rose conversion note: Corresponds to <Default>.

      Supported API: true

    • UPPER_CASE

      public static final StringCase UPPER_CASE
      Setter will be generated to call String.toUpperCase(), forcing the string to upper case.

      Rose conversion note: Corresponds to UpperCase.

      Supported API: true

    • LOWER_CASE

      public static final StringCase LOWER_CASE
      Setter will be generated to call String.toLowerCase(), forcing the string to lower case.

      Rose conversion note: Corresponds to LowerCase.

      Supported API: true