net.amygdalum.util.text.linkeddawg.CharGenericNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compilerutils Show documentation
Show all versions of compilerutils Show documentation
Utility classes needed for search and compiler applications
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