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

com.alachisoft.ncache.client.internal.caching.DataSourceOpResult Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.alachisoft.ncache.client.internal.caching;

enum DataSourceOpResult {
    Failure(0),
    Success(1);

    private int numVal;

    DataSourceOpResult(int numVal) {
        this.numVal = numVal;
    }

    public int getNumVal() {
        return numVal;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy