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

com.clevertap.apns.enums.InterruptionLevel Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package com.clevertap.apns.enums;

public enum InterruptionLevel {

    ACTIVE("active"),
    PASSIVE("passive"),
    TIME_SENSITIVE("time-sensitive"),
    CRITICAL("critical")
    ;


    private final String value;

    InterruptionLevel(String value) {
        this.value = value;
    }

    public String getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy