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

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

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

import net.amygdalum.util.map.CharObjectMap;
import net.amygdalum.util.text.AttachmentAdaptor;
import net.amygdalum.util.text.CharConnectionAdaptor;
import net.amygdalum.util.text.CharNode;

public class CharGenericNode implements CharNode, CharConnectionAdaptor, AttachmentAdaptor {

	private CharObjectMap> nexts;
	private T attached;

	public CharGenericNode() {
		this.nexts = new CharObjectMap>(null);
	}
	
	@Override
	public void addNextNode(char c, CharNode node) {
		nexts.put(c, node);
	}

	@Override
	public CharNode nextNode(char c) {
		return nexts.get(c);
	}

	@Override
	public char[] 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