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

org.eclipse.jnosql.communication.semistructured.DefaultDeleteQuery Maven / Gradle / Ivy

The newest version!
/*
 *  Copyright (c) 2024 Contributors to the Eclipse Foundation
 *   All rights reserved. This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License v1.0
 * and Apache License v2.0 which accompanies this distribution.
 * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 * and the Apache License v2.0 is available at http://www.opensource.org/licenses/apache2.0.php.
 * You may elect to redistribute this code under either of these licenses.
 *
 */
package org.eclipse.jnosql.communication.semistructured;



import java.util.List;
import java.util.Objects;
import java.util.Optional;

import static java.util.Collections.unmodifiableList;
import static java.util.Optional.ofNullable;

/**
 * The default implementation of {@link DeleteQuery}
 */
record DefaultDeleteQuery(String name, CriteriaCondition criteriaCondition, List columns)
        implements DeleteQuery {


    @Override
    public Optional condition() {
        return ofNullable(criteriaCondition);
    }

    @Override
    public List columns() {
        return unmodifiableList(columns);
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (!(o instanceof DeleteQuery that)) {
            return false;
        }
        return Objects.equals(name, that.name()) &&
                Objects.equals(criteriaCondition, that.condition().orElse(null)) &&
                Objects.equals(columns, that.columns());
    }

    @Override
    public int hashCode() {
        return Objects.hash(name, criteriaCondition, columns);
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy