Class LowerCaseConversion
- java.lang.Object
-
- com.univocity.parsers.conversions.LowerCaseConversion
-
- All Implemented Interfaces:
Conversion<java.lang.String,java.lang.String>
public class LowerCaseConversion extends java.lang.Object implements Conversion<java.lang.String,java.lang.String>
Converts an input String to its lower case representation Therevert(String)
implements the same behavior ofexecute(String)
. Null inputs produce null outputs.
-
-
Constructor Summary
Constructors Constructor Description LowerCaseConversion()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
execute(java.lang.String input)
Applies the toLowerCase operation in the input and returns the result.java.lang.String
revert(java.lang.String input)
Applies the toLowerCase operation in the input and returns the result.
-
-
-
Method Detail
-
execute
public java.lang.String execute(java.lang.String input)
Applies the toLowerCase operation in the input and returns the result. Equivalent torevert(String)
- Specified by:
execute
in interfaceConversion<java.lang.String,java.lang.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
public java.lang.String revert(java.lang.String input)
Applies the toLowerCase operation in the input and returns the result. Equivalent toexecute(String)
- Specified by:
revert
in interfaceConversion<java.lang.String,java.lang.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.
-
-