Class DoubleEntry

java.lang.Object
net.quasardb.qdb.batch.DoubleEntry

public final class DoubleEntry extends Object
A double in the database.
  • Constructor Details

    • DoubleEntry

      protected DoubleEntry(Batch batch, String alias)
  • Method Details

    • ofAlias

      public static DoubleEntry ofAlias(Batch batch, String alias)
    • put

      public void put(double content)
      Create a new double with the specified content. Fails if the double already exists.
      Parameters:
      content - The double value to be stored.
    • update

      public void update(double content)
      Replaces the content of the double.
      Parameters:
      content - The double value to be stored.