mds.data.descriptor_s.INTEGER_UNSIGNED Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mdsplus-api Show documentation
Show all versions of mdsplus-api Show documentation
MDSplus interface (via lib or mdsip).
package mds.data.descriptor_s;
import java.math.BigInteger;
import java.nio.ByteBuffer;
import mds.data.DTYPE;
public abstract class INTEGER_UNSIGNED extends INTEGER
{
protected INTEGER_UNSIGNED(final ByteBuffer b)
{
super(b);
}
public INTEGER_UNSIGNED(final DTYPE ou, final BigInteger value)
{
super(ou, value);
}
public INTEGER_UNSIGNED(final DTYPE bu, final byte value)
{
super(bu, value);
}
public INTEGER_UNSIGNED(final DTYPE lu, final int value)
{
super(lu, value);
}
public INTEGER_UNSIGNED(final DTYPE qu, final long value)
{
super(qu, value);
}
public INTEGER_UNSIGNED(final DTYPE wu, final short value)
{
super(wu, value);
}
@Override
public final INTEGER_UNSIGNED> abs()
{
return this;
}
@Override
protected final byte getRankClass()
{ return 0x00; }
}