Package org.h2.expression.function
Enum ToCharFunction.Capitalization
java.lang.Object
java.lang.Enum<ToCharFunction.Capitalization>
org.h2.expression.function.ToCharFunction.Capitalization
- All Implemented Interfaces:
Serializable
,Comparable<ToCharFunction.Capitalization>
,java.lang.constant.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. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionApplies this capitalization strategy to the specified string.(package private) static ToCharFunction.Capitalization
toCapitalization
(Boolean up1, Boolean up2) Returns the capitalization / casing strategy which should be used when the first and second letters have the specified casing.Returns the enum constant of this type with the specified name.static ToCharFunction.Capitalization[]
values()
Returns an array containing the constants of this enum type, 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).
-
-
Constructor Details
-
Capitalization
private Capitalization()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
toCapitalization
Returns the capitalization / casing strategy which should be used when the first and second letters have the specified casing.- Parameters:
up1
- whether or not the first letter is uppercasedup2
- whether or not the second letter is uppercased- Returns:
- the capitalization / casing strategy which should be used when the first and second letters have the specified casing
-
apply
Applies this capitalization strategy to the specified string.- Parameters:
s
- the string to apply this strategy to- Returns:
- the resultant string
-