All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lphystudio.core.narrative.Section Maven / Gradle / Ivy

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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy