
io.relayr.java.model.notifications.NotificationService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for connecting to the Relayr Cloud
The newest version!
package io.relayr.java.model.notifications;
public enum NotificationService {
GCM("gcm"), APNS("apns");
private final String name;
NotificationService(String name) {
this.name = name;
}
public String getName() {
return name;
}
public static NotificationService getByName(String service) {
for (NotificationService val : values())
if (val.getName().equals(service)) return val;
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy