![JAR search and dependency download from the Maven repository](/logo.png)
com.arangodb.BaseArangoCursor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core module for ArangoDB Java Driver
package com.arangodb;
import com.arangodb.entity.CursorEntity;
import java.util.List;
public interface BaseArangoCursor {
String getId();
Integer getCount();
Boolean isCached();
Boolean hasMore();
List getResult();
Boolean isPotentialDirtyRead();
String getNextBatchId();
CursorEntity.Extras getExtra();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy