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

io.corbel.lib.queries.ResourceQueryQueryLiteral Maven / Gradle / Ivy

There is a newer version: 0.16.0
Show newest version
package io.corbel.lib.queries;

import java.util.List;

import io.corbel.lib.queries.exception.QueryMatchingException;
import io.corbel.lib.queries.matcher.QueryMatcher;
import io.corbel.lib.queries.request.QueryLiteral;
import io.corbel.lib.queries.request.ResourceQuery;

/**
 * @author Rubén Carrasco
 *
 */
public class ResourceQueryQueryLiteral extends QueryLiteral {

    @Override
    protected boolean elemMatch(Object object, QueryMatcher queryMatcher) throws QueryMatchingException {
        List objectList = (List) object;
        for (Object object2 : objectList) {
            if (queryMatcher.matchObject(literal, object2)) {
                return true;
            }
        }
        return false;
    }

    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((literal == null) ? 0 : literal.hashCode());
        return result;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        ResourceQueryQueryLiteral other = (ResourceQueryQueryLiteral) obj;
        if (literal == null) {
            if (other.literal != null) {
                return false;
            }
        } else if (!literal.equals(other.literal)) {
            return false;
        }
        return true;
    }

    @Override
    public String toString() {
        return getLiteral().toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy