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

mds.data.descriptor_apd.List Maven / Gradle / Ivy

There is a newer version: 7.139.60
Show newest version
package mds.data.descriptor_apd;

import java.nio.ByteBuffer;
import mds.data.DTYPE;
import mds.data.descriptor.Descriptor;
import mds.data.descriptor.Descriptor_APD;

/** List (214 : -42) **/
public class List extends Descriptor_APD
{
	public static final String prefix = "List";

	public List(final ByteBuffer b)
	{
		super(b);
	}

	public List(final Descriptor... descs)
	{
		super(DTYPE.LIST, descs);
	}

	public final Descriptor get(final int idx)
	{
		return this.getScalar(idx);
	}

	@Override
	protected final String getPrefix()
	{ return List.prefix; }

	public final Descriptor[] toArray()
	{
		return this.getAtomic();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy