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

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

package com.intellifylearning.metrics;

public enum Action {

    READ("reading", "read"), HILIGHT("reading", "hilight"), BOOKMARK("reading", "bookmark"), ANNOTATE("reading",
            "annotate");

    private String activityType;
    private String label;

    Action(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