Package | Description |
---|---|
com.graphdbapi.driver | |
com.graphdbapi.driver.internal.search |
Modifier and Type | Method and Description |
---|---|
Iterator<Edge> |
Graph.searchEdgeProperty(String type,
List<SearchPredicate> predicates,
List<SearchOrder> orders,
int skip,
int limit)
通过类型、属性查询边
|
Iterator<Vertex> |
Graph.searchVertexProperty(String type,
List<SearchPredicate> predicates,
List<SearchOrder> orders,
int skip,
int limit)
通过类型、属性查询点
|
Modifier and Type | Method and Description |
---|---|
static SearchPredicate |
SearchPredicate.createContainsPredicate(String property,
String value)
谓词 包含
|
static SearchPredicate |
SearchPredicate.createEqualPredicate(String property,
Object value)
谓词 等于
|
static SearchPredicate |
SearchPredicate.createGreaterThanPredicate(String property,
Number value,
boolean inclusiveEqual)
谓词 大于或大于等于
|
static SearchPredicate |
SearchPredicate.createLessThanPredicate(String property,
Number value,
boolean inclusiveEqual)
谓词 小于或小于等于
|
static SearchPredicate |
SearchPredicate.createPrefixPredicate(String property,
String value)
谓词 前缀
|
static SearchPredicate |
SearchPredicate.createRangeNumberPredicate(String property,
Number value1,
Number value2,
boolean inclusiveEqual1,
boolean inclusiveEqual2)
谓词 范围
|
static SearchPredicate |
SearchPredicate.createSuffixPredicate(String property,
String value)
谓词 后缀
|
Copyright © 2024. All rights reserved.