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

org.codelibs.elasticsearch.taste.model.cache.DmValue Maven / Gradle / Ivy

package org.codelibs.elasticsearch.taste.model.cache;

public class DmValue {
    private Object value;

    private int size;

    public DmValue(final Object value, final int size) {
        this.value = value;
        this.size = size;
    }

    @SuppressWarnings("unchecked")
    public  T getValue() {
        return (T) value;
    }

    public int getSize() {
        return size;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy