initial commit

This commit is contained in:
skubiak
2015-01-07 13:16:55 +01:00
commit 580c43c9fc
11 changed files with 764 additions and 0 deletions

View 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;
}
}