Main execution class for a Hadoop map/reduce operation which counts
occurrences of every unique whitespace-separated word in the files
from a specified input directory, and writes this output to a
specified output directory.
WordMap implements a map operation which takes a WritableComparable
and a Text object representing a line of text, and outputs a
<Text, IntWritable> tuple for each word in that line of text
with the IntWritable having a value of 1.
WordMap() -
Constructor for class edu.purdue.cs.eblanton.WordMap