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

com.sap.mobile.services.client.push.InterruptionLevel Maven / Gradle / Ivy

The newest version!
package com.sap.mobile.services.client.push;

public enum InterruptionLevel {
    PASSIVE("passive"),
    ACTIVE("active"),
    TIME_SENSITIVE("time-sensitive"),
    CRITICAL("critical");

    private String level;

    private InterruptionLevel(String level) {
        this.level = level;
    }

    public String toString() {
        return this.level;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy