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

org.sirix.index.bplustree.VoidValue Maven / Gradle / Ivy

package org.sirix.index.bplustree;

import org.sirix.node.interfaces.Record;
import org.sirix.node.interfaces.RecordPersister;

/**
 * Represents a void value, that is no value at all (for inner node pages in the BPlusTree).
 * 
 * @author Johannes Lichtenberger
 * 
 */
public class VoidValue implements Record {
  @Override
  public long getNodeKey() {
    return 0;
  }

  @Override
  public RecordPersister getKind() {
    return null;
  }

  @Override
  public long getRevision() {
    return 0;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy