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

org.nlab.json.stream.context.token.Token Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package org.nlab.json.stream.context.token;

/**
 * Created by nlabrot on 19/04/16.
 */
public interface Token {

    Token getChildren();

    void setChildren(Token value);

    boolean isLiteral();

    default boolean isPreInit() {
        return false;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy