com.jdroid.javaweb.google.gcm.GcmMessagePriority Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdroid-java-webapp Show documentation
Show all versions of jdroid-java-webapp Show documentation
Jdroid library for Java Web apps
The newest version!
package com.jdroid.javaweb.google.gcm;
public enum GcmMessagePriority {
NORMAL("normal"),
HIGH("high");
private String parameter;
GcmMessagePriority(String parameter) {
this.parameter = parameter;
}
public String getParameter() {
return parameter;
}
public static GcmMessagePriority findByParameter(String parameter) {
for (GcmMessagePriority each : values()) {
if (each.getParameter().equals(parameter)) {
return each;
}
}
return null;
}
}