com.urbanairship.api.channel.model.attributes.AttributeAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
The Urban Airship Java client library
package com.urbanairship.api.channel.model.attributes;
import java.util.Optional;
public enum AttributeAction {
SET("set"),
REMOVE("remove");
private final String identifier;
private AttributeAction(String identifier) {
this.identifier = identifier;
}
public static Optional find(String identifier) {
for (AttributeAction attributeAction : values()) {
if (attributeAction.getIdentifier().equals(identifier)) {
return Optional.of(attributeAction);
}
}
return Optional.empty();
}
public String getIdentifier() {
return identifier;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy