Class ToLowerParser
java.lang.Object
es.uam.eps.ir.relison.content.parsing.ToLowerParser
- All Implemented Interfaces:
TextParser
public class ToLowerParser extends java.lang.Object implements TextParser
Simple text parser that converts a text into lower case.
-
Constructor Summary
Constructors Constructor Description ToLowerParser() -
Method Summary
Modifier and Type Method Description java.lang.Stringparse(java.lang.String text)Given a text, parses and treats it.
-
Constructor Details
-
ToLowerParser
public ToLowerParser()
-
-
Method Details
-
parse
public java.lang.String parse(java.lang.String text)Description copied from interface:TextParserGiven a text, parses and treats it.- Specified by:
parsein interfaceTextParser- Parameters:
text- the original text.- Returns:
- the treated text.
-