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 com.google.common.collect.ImmutableList;
import graphql.PublicApi;

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

import static graphql.collect.ImmutableKit.emptyList;

@PublicApi
public class IgnoredChars implements Serializable {

    private final ImmutableList left;
    private final ImmutableList right;

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

    public IgnoredChars(List left, List right) {
        this.left = ImmutableList.copyOf(left);
        this.right = ImmutableList.copyOf(right);
    }


    public List getLeft() {
        return left;
    }

    public List getRight() {
        return right;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy