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

com.alachisoft.ncache.client.ConnectivityStatus Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
package com.alachisoft.ncache.client;

public enum ConnectivityStatus {

    /**
     * Client is connected to the Cache.
     */
    Connected(1),

    /**
     * Client is disconnected from Cache.
     */
    Disconnected(0);

    public static final int SIZE = java.lang.Integer.SIZE;
    private static java.util.HashMap mappings;
    private int intValue;

    private ConnectivityStatus(int value) {
        intValue = value;
        getMappings().put(value, this);
    }

    private static java.util.HashMap getMappings() {
        if (mappings == null) {
            synchronized (ConnectivityStatus.class) {
                if (mappings == null) {
                    mappings = new java.util.HashMap();
                }
            }
        }
        return mappings;
    }

    public static ConnectivityStatus forValue(int value) {
        return getMappings().get(value);
    }

    public int getValue() {
        return intValue;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy