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

com.scalar.database.api.MutationCondition Maven / Gradle / Ivy

Go to download

A library that provides a distributed storage abstraction and client-coordinated distributed transaction manager on the storage.

There is a newer version: 3.13.0
Show newest version
package com.scalar.database.api;

import java.util.List;
import javax.annotation.Nonnull;

/**
 * An abstraction for mutation condition.
 *
 * @author Hiroyuki Yamada
 */
public interface MutationCondition {

  /**
   * Returns the list of conditions.
   *
   * @return a list of conditions
   */
  @Nonnull
  List getExpressions();

  /**
   * Visits the specified visitor
   *
   * @param visitor a visitor object to visit
   */
  void accept(MutationConditionVisitor visitor);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy