Example usage for weka.core Option listOptionsForClassHierarchy

List of usage examples for weka.core Option listOptionsForClassHierarchy

Introduction

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

Prototype

public static Vector<Option> listOptionsForClassHierarchy(Class<?> childClazz, Class<?> oldestAncestorClazz) 

Source Link

Document

Get a list of options for a class.

Usage

From source file:affective.core.EmbeddingHandler.java

License:Open Source License

public Enumeration<Option> listOptions() {
    //this.getClass().getSuperclass()
    return Option.listOptionsForClassHierarchy(this.getClass(), this.getClass().getSuperclass()).elements();
}