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

com.ideaaedi.commonds.tuple.Holder Maven / Gradle / Ivy

The newest version!
package com.ideaaedi.commonds.tuple;

import lombok.Data;

/**
 * 对象持有器
 *
 * @author JustryDeng 
 * @since 2100.6.8
 */
@Data
public class Holder {
    
    private volatile T value;
    
    /**
     * 快熟创建
     */
    public static  Holder of(T value) {
        Holder holder = new Holder<>();
        holder.setValue(value);
        return holder;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy