zmq.util.ValueReference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeromq Show documentation
Show all versions of jeromq Show documentation
Pure Java implementation of libzmq
The newest version!
package zmq.util;
public class ValueReference
{
private V value;
public ValueReference(V value)
{
this.value = value;
}
public ValueReference()
{
}
public final V get()
{
return value;
}
public final void set(V value)
{
this.value = value;
}
@Override
public String toString()
{
return value == null ? "null" : value.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy