redis.clients.jedis.graph.GraphCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jedis Show documentation
Show all versions of jedis Show documentation
Jedis is a blazingly small and sane Redis java client.
package redis.clients.jedis.graph;
/**
* Store a local cache in the client, for a specific graph. Holds the labels, property names and
* relationship types.
*/
interface GraphCache {
/**
* @param index - index of label
* @return requested label
*/
String getLabel(int index);
/**
* @param index index of the relationship type
* @return requested relationship type
*/
String getRelationshipType(int index);
/**
* @param index index of property name
* @return requested property
*/
String getPropertyName(int index);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy