Example usage for org.apache.mahout.common AbstractJob keyFor

List of usage examples for org.apache.mahout.common AbstractJob keyFor

Introduction

In this page you can find the example usage for org.apache.mahout.common AbstractJob keyFor.

Prototype

public static String keyFor(String optionName) 

Source Link

Document

Build the option key (--name) from the option name

Usage

From source file:com.skp.experiment.common.MahoutTestCase.java

License:Apache License

/**
 * @return a job option key string (--name) from the given option name
 *///from   w  ww . j a  va  2s. c  o  m
protected static String optKey(String optionName) {
    return AbstractJob.keyFor(optionName);
}