24 lines
352 B
Java
Raw Normal View History

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