package de.svenkubiak.jpushover.enums; /** * * @author svenkubiak * */ 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 get() { return this.value; } }