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

graphql.language.IgnoredChars Maven / Gradle / Ivy

There is a newer version: 230521-nf-execution
Show newest version
package graphql.language;

import graphql.PublicApi;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

@PublicApi
public class IgnoredChars implements Serializable {

    private final List left;
    private final List right;

    public static final IgnoredChars EMPTY = new IgnoredChars(Collections.emptyList(), Collections.emptyList());

    public IgnoredChars(List left, List right) {
        this.left = new ArrayList<>(left);
        this.right = new ArrayList<>(right);
    }


    public List getLeft() {
        return new ArrayList<>(left);
    }

    public List getRight() {
        return new ArrayList<>(right);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy