lphystudio.core.narrative.Section Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lphy-studio Show documentation
Show all versions of lphy-studio Show documentation
The GUI for LPhy language.
The newest version!
package lphystudio.core.narrative;
/**
* Sections in narrative
*/
public enum Section {
// Do not change the order,
// otherwise it will break NarrativeCreator
Code("Code"),
Data("Data"),
Model("Model"),
Posterior("Posterior"),
GraphicalModel("Graphical Model"),
References("References");
public String name;
Section(String name) {
this.name = name;
}
public String getName() {
return name;
}
}