Example usage for weka.core Option getOptionsForHierarchy

List of usage examples for weka.core Option getOptionsForHierarchy

Introduction

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

Prototype

public static String[] getOptionsForHierarchy(Object target, Class<?> oldestAncestorClazz) 

Source Link

Document

Get the settings of the supplied object.

Usage

From source file:affective.core.EmbeddingHandler.java

License:Open Source License

public String[] getOptions() {
    return Option.getOptionsForHierarchy(this, this.getClass().getSuperclass());

}