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

io.katharsis.queryParams.include.Inclusion Maven / Gradle / Ivy

There is a newer version: 2.6.3
Show newest version
package io.katharsis.queryParams.include;

import java.util.Arrays;
import java.util.List;

/**
 * Represents a single inclusion passed as a query param. An example of the value represented by this value is:
 * comments.author.
 */
public class Inclusion {

    private String path;

    public Inclusion(@SuppressWarnings("SameParameterValue") String path) {
        if (path == null) {
            throw new IllegalArgumentException("path cannot be null");
        }
        this.path = path;
    }

    public String getPath() {
        return path;
    }

    public List getPathList() {
        return Arrays.asList(path.split("\\."));
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        Inclusion inclusion = (Inclusion) o;

        return !(path != null ? !path.equals(inclusion.path) : inclusion.path != null);

    }

    @Override
    public int hashCode() {
        return path != null ? path.hashCode() : 0;
    }

    @Override
    public String toString() {
        return "Inclusion{" +
            "path='" + path + '\'' +
            '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy