![JAR search and dependency download from the Maven repository](/logo.png)
com.nflabs.zeppelin.zengine.context.ZContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zeppelin-zengine Show documentation
Show all versions of zeppelin-zengine Show documentation
Zengine is java framework for data analysis on Hadoop. see http://nflabs.github.io/zeppelin/#/zengine
The newest version!
package com.nflabs.zeppelin.zengine.context;
public interface ZContext {
/**
* Get params;
*
* @return
*/
public Object param(String name);
/**
* Get params;
*
* @param name
* name of parameter
* @param defaultValue
* defaultValue of the param
* @return
*/
public Object param(String name, Object defaultValue);
/**
* Get input table name
*
* @return
*/
public String in();
/**
* Get output table name
*
* @return
*/
public String out();
/**
* Get arguments
*
* @return
*/
public String arg();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy