All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jdroid.javaweb.google.gcm.GcmMessagePriority Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy