All Methods Static Methods Concrete Methods
| Modifier and Type |
Method and Description |
static ListValue |
appendToList(ListValue list,
AnyValue value) |
static MapValue |
combine(MapValue a,
MapValue b) |
static ListValue |
concat(ListValue... lists) |
static ListValue |
drop(ListValue list,
int n) |
static EdgeReference |
edge(long id) |
static EdgeValue |
edgeValue(long id,
NodeValue startNode,
NodeValue endNode,
TextValue type,
MapValue properties) |
static MapValue |
emptyMap() |
static ListValue |
filter(ListValue list,
Function<AnyValue,Boolean> filter) |
static ListValue |
fromArray(ArrayValue arrayValue) |
static ListValue |
fromList(List<AnyValue> values) |
static ListValue |
list(AnyValue... values) |
static MapValue |
map(Map<String,AnyValue> map) |
static MapValue |
map(String[] keys,
AnyValue[] values) |
static NodeReference |
node(long id) |
static NodeValue |
nodeValue(long id,
TextArray labels,
MapValue properties) |
static PathValue |
path(NodeValue[] nodes,
EdgeValue[] edges) |
static PointValue |
pointCartesian(double x,
double y) |
static PointValue |
pointGeographic(double longitude,
double latitude) |
static ListValue |
prependToList(ListValue list,
AnyValue value) |
static ListValue |
range(long start,
long end,
long step) |
static ListValue |
reverse(ListValue list) |
static ListValue |
slice(ListValue list,
int from,
int to) |
static ListValue |
take(ListValue list,
int n) |
static ListValue |
transform(ListValue list,
Function<AnyValue,AnyValue> transForm) |