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

com.ringcentral.platform.metrics.utils.Ref Maven / Gradle / Ivy

The newest version!
package com.ringcentral.platform.metrics.utils;

public class Ref {

    private V value;

    public Ref() {}

    public Ref(V value) {
        this.value = value;
    }

    public static  Ref of(V value) {
        return new Ref<>(value);
    }

    public boolean hasValue() {
        return value != null;
    }

    public void setValue(V value) {
        this.value = value;
    }

    public V value() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy