Class LowerCaseConversion
java.lang.Object
com.univocity.parsers.conversions.LowerCaseConversion
- All Implemented Interfaces:
Conversion<String,
String>
Converts an input String to its lower case representation
The
revert(String)
implements the same behavior of execute(String)
. Null inputs produce null outputs.-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
LowerCaseConversion
public LowerCaseConversion()
-
-
Method Details
-
execute
Applies the toLowerCase operation in the input and returns the result. Equivalent torevert(String)
- Specified by:
execute
in interfaceConversion<String,
String> - Parameters:
input
- the String to be converted to lower case- Returns:
- the lower case representation of the given input, or null if the input is null.
-
revert
Applies the toLowerCase operation in the input and returns the result. Equivalent toexecute(String)
- Specified by:
revert
in interfaceConversion<String,
String> - Parameters:
input
- the String to be converted to lower case- Returns:
- the lower case representation of the given input, or null if the input is null.
-