Package org.h2.expression.function
Enum Class ToCharFunction.Capitalization
java.lang.Object
java.lang.Enum<ToCharFunction.Capitalization>
org.h2.expression.function.ToCharFunction.Capitalization
- All Implemented Interfaces:
Serializable,Comparable<ToCharFunction.Capitalization>,Constable
- Enclosing class:
ToCharFunction
Represents a capitalization / casing strategy.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe string is capitalized (first letter uppercased, subsequent letters lowercased).All letters are lowercased.All letters are uppercased. -
Method Summary
Modifier and TypeMethodDescriptionApplies this capitalization strategy to the specified string.Returns the enum constant of this class with the specified name.static ToCharFunction.Capitalization[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UPPERCASE
All letters are uppercased. -
LOWERCASE
All letters are lowercased. -
CAPITALIZE
The string is capitalized (first letter uppercased, subsequent letters lowercased).
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-
apply
Applies this capitalization strategy to the specified string.- Parameters:
s- the string to apply this strategy to- Returns:
- the resultant string
-