io.stargate.db.query.BoundDMLQueryWithConditions Maven / Gradle / Ivy
package io.stargate.db.query;
import java.util.List;
public interface BoundDMLQueryWithConditions extends BoundDMLQuery {
boolean ifExists();
List conditions();
default boolean isConditional() {
return ifExists() || !conditions().isEmpty();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy