com.scalar.db.api.DeleteIf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalardb Show documentation
Show all versions of scalardb Show documentation
A universal transaction manager that achieves database-agnostic transactions and distributed transactions that span multiple databases
package com.scalar.db.api;
import static com.google.common.base.Preconditions.checkNotNull;
import com.google.common.base.MoreObjects;
import com.google.common.collect.ImmutableList;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nonnull;
import javax.annotation.concurrent.Immutable;
/**
* An optional parameter of {@link Delete} for conditional delete. {@link Delete} with this
* condition makes the operation take effect only if a specified condition is met.
*
* @author Hiroyuki Yamada
*/
@Immutable
public class DeleteIf implements MutationCondition {
private final List expressions;
/**
* Constructs a {@code DeleteIf} with the specified conditional expressions.
*
* @param expressions a variable length expressions specified with {@code ConditionalExpression}s
* @deprecated As of release 3.6.0. Will be removed in release 5.0.0. Use {@link ConditionBuilder}
* to build a condition instead
*/
@Deprecated
public DeleteIf(ConditionalExpression... expressions) {
checkNotNull(expressions);
this.expressions = new ArrayList<>(expressions.length);
this.expressions.addAll(Arrays.asList(expressions));
}
/**
* Constructs a {@code DeleteIf} with the specified list of conditional expressions.
*
* @param expressions a list of expressions specified with {@code ConditionalExpression}s
* @deprecated As of release 3.6.0. Will be removed in release 5.0.0. Use {@link ConditionBuilder}
* to build a condition instead
*/
@Deprecated
public DeleteIf(List expressions) {
checkNotNull(expressions);
this.expressions = new ArrayList<>(expressions.size());
this.expressions.addAll(expressions);
}
/**
* Returns the immutable list of conditional expressions.
*
* @return an immutable list of conditional expressions
*/
@Override
@Nonnull
public List getExpressions() {
return ImmutableList.copyOf(expressions);
}
@Override
public void accept(MutationConditionVisitor visitor) {
visitor.visit(this);
}
@Override
public int hashCode() {
return Objects.hash(expressions);
}
/**
* Indicates whether some other object is "equal to" this object. The other object is considered
* equal if:
*
*
* - it is also an {@code DeleteIf} and
*
- both instances have the same expressions
*
*
* @param o an object to be tested for equality
* @return {@code true} if the other object is "equal to" this object otherwise {@code false}
*/
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (!(o instanceof DeleteIf)) {
return false;
}
DeleteIf other = (DeleteIf) o;
return expressions.equals(other.expressions);
}
@Override
public String toString() {
return MoreObjects.toStringHelper(this).add("expressions", expressions).toString();
}
}