org.openmbee.mms.jupyter.services.JupyterHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jupyter Show documentation
Show all versions of jupyter Show documentation
jupyter, a module of the MMS
package org.openmbee.mms.jupyter.services;
import org.openmbee.mms.json.ElementJson;
import org.openmbee.mms.jupyter.JupyterConstants;
import org.openmbee.mms.jupyter.JupyterNodeType;
import org.springframework.stereotype.Component;
@Component
public class JupyterHelper {
public static JupyterNodeType getNodeType(ElementJson e) {
if (e.containsKey(JupyterConstants.CELLTYPE))
return JupyterNodeType.CELL;
return JupyterNodeType.NOTEBOOK;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy