
com.intellifylearning.metrics.Action Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of intellisense Show documentation
Show all versions of intellisense Show documentation
IntelliSense Sensor API for Java
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