edu.stanford.nlp.process
Class Lowercaser

java.lang.Object
  |
  +--edu.stanford.nlp.process.Lowercaser
All Implemented Interfaces:
Processor

public class Lowercaser
extends Object
implements Processor

Processor whose process method Converts a collection of mixed-case Words to a collection of lowercase Words.


Constructor Summary
Lowercaser()
           
 
Method Summary
 Collection process(Collection words)
          Takes a Collection of mixed-case Words and returns a collection of lowercase Words.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Lowercaser

public Lowercaser()
Method Detail

process

public Collection process(Collection words)
Takes a Collection of mixed-case Words and returns a collection of lowercase Words.

Specified by:
process in interface Processor


Stanford NLP Group