19 lines
317 B
Java
Raw Normal View History

2015-01-07 13:16:55 +01:00
package de.svenkubiak.jpushover.enums;
public enum Priority {
LOWEST("-2"),
LOW("-1"),
NORMAL("0"),
HIGH("1"),
EMERGENCY("2");
private final String value;
Priority (String value) {
this.value = value;
}
public String value() {
return this.value;
}
}