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

com.apicatalog.cursor.Cursor Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy