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

io.stargate.db.query.Modification Maven / Gradle / Ivy

There is a newer version: 2.1.0-BETA-19
Show newest version
package io.stargate.db.query;

import javax.annotation.Nullable;
import org.immutables.value.Value.Immutable;

@Immutable
public interface Modification {
  enum Operation {
    SET,
    INCREMENT,
    APPEND,
    PREPEND,
    REMOVE
  }

  ModifiableEntity entity();

  Operation operation();

  @Nullable
  TypedValue value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy