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

com.bestvike.ref Maven / Gradle / Ivy

The newest version!
package com.bestvike;

/**
 * Created by 许崇雷 on 2018-04-20.
 */
public final class ref {
    public T value;

    private ref() {
    }

    public static  ref init(T value) {
        ref ref = new ref<>();
        ref.value = value;
        return ref;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy