initial commit
This commit is contained in:
19
src/main/java/de/svenkubiak/jpushover/enums/Priority.java
Normal file
19
src/main/java/de/svenkubiak/jpushover/enums/Priority.java
Normal file
@@ -0,0 +1,19 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user