![JAR search and dependency download from the Maven repository](/logo.png)
mds.data.descriptor_apd.Dictionary 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_apd;
import java.nio.ByteBuffer;
import mds.data.DTYPE;
import mds.data.descriptor.Descriptor;
import mds.data.descriptor.Descriptor_APD;
/** Dictionary (216 : -40) **/
public class Dictionary extends Descriptor_APD
{
public static final String prefix = "Dict";
public Dictionary(final ByteBuffer b)
{
super(b);
}
public Dictionary(final Descriptor>... descs)
{
super(DTYPE.DICTIONARY, descs);
}
@Override
protected final String getPrefix()
{ return Dictionary.prefix; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy