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

com.blazebit.regex.node.AbstractNode Maven / Gradle / Ivy

package com.blazebit.regex.node;

public abstract class AbstractNode implements Node {

    private Node next;

    @Override
    public Node getNext() {
        return next;
    }

    @Override
    public void setNext(Node next) {
        this.next = next;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy