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.String
parse(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:TextParser
Given a text, parses and treats it.- Specified by:
parse
in interfaceTextParser
- Parameters:
text
- the original text.- Returns:
- the treated text.
-