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

net.amygdalum.util.text.linkeddawg.ByteGenericNode Maven / Gradle / Ivy

The newest version!
package net.amygdalum.util.text.linkeddawg;

import net.amygdalum.util.map.ByteObjectMap;
import net.amygdalum.util.text.AttachmentAdaptor;
import net.amygdalum.util.text.ByteConnectionAdaptor;
import net.amygdalum.util.text.ByteNode;

public class ByteGenericNode implements ByteNode, ByteConnectionAdaptor, AttachmentAdaptor {

	private ByteObjectMap> nexts;
	private T attached;

	public ByteGenericNode() {
		this.nexts = new ByteObjectMap>(null);
	}

	@Override
	public void addNextNode(byte b, ByteNode node) {
		nexts.put(b, node);
	}

	@Override
	public ByteNode nextNode(byte b) {
		return nexts.get(b);
	}

	@Override
	public byte[] getAlternatives() {
		return nexts.keys();
	}
	
	@Override
	public int getAlternativesSize() {
		return nexts.size();
	}

	@Override
	public void attach(T attached) {
		this.attached = attached;
	}

	@Override
	public T getAttached() {
		return attached;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy