Enum Class StringCase
- All Implemented Interfaces:
Serializable,Comparable<StringCase>,Constable
Specifies the case to force the corresponding string to.
Rose conversion note: Corresponds to Class Attribute Specification -> Windchill -> StringCase.
Supported API: true
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionMixed case -- string will be stored exactly as it was provided.Setter will be generated to callString.toLowerCase(), forcing the string to lower case.Setter will be generated to callString.toUpperCase(), forcing the string to upper case. -
Method Summary
-
Enum Constant Details
-
DEFAULT
Mixed case -- string will be stored exactly as it was provided.Rose conversion note: Corresponds to
<Default>.Supported API: true
-
UPPER_CASE
Setter will be generated to callString.toUpperCase(), forcing the string to upper case.Rose conversion note: Corresponds to
UpperCase.Supported API: true
-
LOWER_CASE
Setter will be generated to callString.toLowerCase(), forcing the string to lower case.Rose conversion note: Corresponds to
LowerCase.Supported API: true
-