org.eclipse.rdf4j.sail.nativerdf.model.NativeBNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdf4j-sail-nativerdf Show documentation
Show all versions of rdf4j-sail-nativerdf Show documentation
Sail implementation that stores data directly to disk in dedicated file formats.
/*******************************************************************************
* Copyright (c) 2015 Eclipse RDF4J contributors, Aduna, and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Distribution License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*******************************************************************************/
package org.eclipse.rdf4j.sail.nativerdf.model;
import org.eclipse.rdf4j.model.impl.SimpleBNode;
import org.eclipse.rdf4j.sail.nativerdf.ValueStoreRevision;
public class NativeBNode extends SimpleBNode implements NativeResource {
/*-----------*
* Constants *
*-----------*/
private static final long serialVersionUID = 2729080258717960353L;
/*-----------*
* Variables *
*-----------*/
private volatile ValueStoreRevision revision;
private volatile int internalID;
/*--------------*
* Constructors *
*--------------*/
protected NativeBNode(ValueStoreRevision revision, int internalID) {
super();
setInternalID(internalID, revision);
}
public NativeBNode(ValueStoreRevision revision, String nodeID) {
this(revision, nodeID, UNKNOWN_ID);
}
public NativeBNode(ValueStoreRevision revision, String nodeID, int internalID) {
super(nodeID);
setInternalID(internalID, revision);
}
/*---------*
* Methods *
*---------*/
@Override
public void setInternalID(int internalID, ValueStoreRevision revision) {
this.internalID = internalID;
this.revision = revision;
}
@Override
public ValueStoreRevision getValueStoreRevision() {
return revision;
}
@Override
public int getInternalID() {
return internalID;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o instanceof NativeBNode && internalID != NativeValue.UNKNOWN_ID) {
NativeBNode otherNativeBNode = (NativeBNode) o;
if (otherNativeBNode.internalID != NativeValue.UNKNOWN_ID && revision.equals(otherNativeBNode.revision)) {
// NativeBNode's from the same revision of the same native store,
// with both ID's set
return internalID == otherNativeBNode.internalID;
}
}
return super.equals(o);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy