use of org.apache.zeppelin.display.ui.OptionInput.ParamOption in project zeppelin by apache.
the class GObject method toParamOptions.
private ParamOption[] toParamOptions(Map<Object, String> options) {
ParamOption[] paramOptions = new ParamOption[options.size()];
int i = 0;
for (Map.Entry<Object, String> e : options.entrySet()) {
paramOptions[i++] = new ParamOption(e.getKey(), e.getValue());
}
return paramOptions;
}
Aggregations