com.apicatalog.cursor.Cursor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iridium-cbor-ld-jre11 Show documentation
Show all versions of iridium-cbor-ld-jre11 Show documentation
A CBOR-based serialization for Linked Data
The newest version!
package com.apicatalog.cursor;
public interface Cursor {
boolean prev();
MapCursor mapCursor();
ArrayCursor arrayCursor();
boolean isArrayItem();
ArrayItemCursor arrayItemCursor();
boolean isMapEntry();
MapEntryCursor mapEntryCursor();
MapEntryCursor mapKey(String key);
MapEntryCursor entry(String key);
T sourceValue();
String key();
Integer index();
ArrayItemCursor arrayIndex(int index);
ArrayItemCursor item(int index);
}