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.- Author:
- Univocity Software Pty Ltd - parsers@univocity.com
-
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:
executein 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:
revertin 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.
-