![JAR search and dependency download from the Maven repository](/logo.png)
com.ajjpj.abase.util.AObjectHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of a-base Show documentation
Show all versions of a-base Show documentation
a-base is a library of basic (hence the name) classes, most notably immutable collection classes with copy-on-write operations
package com.ajjpj.abase.util;
/**
* @author arno
*/
@SuppressWarnings("unused")
public class AObjectHolder {
public T value;
public AObjectHolder(T value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy