Example usage for weka.core Option listOptionsForClass

List of usage examples for weka.core Option listOptionsForClass

Introduction

In this page you can find the example usage for weka.core Option listOptionsForClass.

Prototype

public static Vector<Option> listOptionsForClass(Class<?> clazz) 

Source Link

Document

Gets a list of options for the supplied class.

Usage

From source file:affective.core.ArffLexiconEvaluator.java

License:Open Source License

public Enumeration<Option> listOptions() {
    return Option.listOptionsForClass(this.getClass()).elements();
}