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

com.intellifylearning.metrics.Entity Maven / Gradle / Ivy

package com.intellifylearning.metrics;

public enum Entity {
    BOOK("reading", "book"), CHAPTER("reading", "chapter"), PAGE("reading", "page"), PARAGRAPH("reading",
            "paragraph"), SENTENCE("reading", "sentence"), WORD("reading", "word");

    private String activityType;
    private String label;

    Entity(String activityType, String label) {
        this.activityType = activityType;
        this.label = label;
    }

    /**
     * @return the activityType
     */
    public String getActivityType() {
        return activityType;
    }

    /**
     * @return the label
     */
    public String getLabel() {
        return label;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy