| Package | Description |
|---|---|
| com.mware.ge.csv | |
| com.mware.ge.inmemory | |
| com.mware.ge.store | |
| com.mware.ge.values | |
| com.mware.ge.values.storable | |
| com.mware.ge.values.virtual |
| Modifier and Type | Method and Description |
|---|---|
AnyValue |
Extractors.PointExtractor.value() |
AnyValue |
Extractors.DateExtractor.value() |
AnyValue |
Extractors.TimeExtractor.value() |
AnyValue |
Extractors.DateTimeExtractor.value() |
AnyValue |
Extractors.LocalTimeExtractor.value() |
AnyValue |
Extractors.LocalDateTimeExtractor.value() |
AnyValue |
Extractors.DurationExtractor.value() |
| Modifier and Type | Class and Description |
|---|---|
class |
InMemoryStreamingPropertyValue |
| Modifier and Type | Class and Description |
|---|---|
class |
StreamingPropertyValueFileRef |
static class |
StreamingPropertyValueFileRef.StreamingPropertyValueFile |
| Modifier and Type | Class and Description |
|---|---|
class |
VirtualValue
Value that can exist transiently during computations, but that cannot be stored as a property value.
|
| Modifier and Type | Field and Description |
|---|---|
static Comparator<AnyValue> |
AnyValues.COMPARATOR |
static TernaryComparator<AnyValue> |
AnyValues.TERNARY_COMPARATOR |
| Modifier and Type | Method and Description |
|---|---|
AnyValue |
SequenceValue.value(int offset) |
| Modifier and Type | Method and Description |
|---|---|
Iterator<AnyValue> |
SequenceValue.iterator() |
| Modifier and Type | Method and Description |
|---|---|
Boolean |
VirtualValue.ternaryEquals(AnyValue other) |
abstract Boolean |
AnyValue.ternaryEquals(AnyValue other) |
| Modifier and Type | Method and Description |
|---|---|
static <T> T |
StructureBuilder.build(StructureBuilder<AnyValue,T> builder,
Iterable<Map.Entry<String,AnyValue>> entries) |
static <T> T |
StructureBuilder.build(StructureBuilder<AnyValue,T> builder,
Iterable<Map.Entry<String,AnyValue>> entries) |
static <T> T |
StructureBuilder.build(StructureBuilder<AnyValue,T> builder,
MapValue map) |
abstract int |
VirtualValue.compareTo(VirtualValue other,
Comparator<AnyValue> comparator) |
default int |
SequenceValue.compareToSequence(SequenceValue other,
Comparator<AnyValue> comparator) |
static int |
SequenceValue.compareUsingIterators(SequenceValue a,
SequenceValue b,
Comparator<AnyValue> comparator) |
static int |
SequenceValue.compareUsingRandomAccess(SequenceValue a,
SequenceValue b,
Comparator<AnyValue> comparator) |
| Modifier and Type | Class and Description |
|---|---|
class |
ArrayValue
Array of one of the storable primitives
|
class |
BooleanArray |
class |
BooleanValue
This does not extend AbstractProperty since the JVM can take advantage of the 4 byte initial field alignment if
we don't extend a class that has fields.
|
class |
ByteArray |
class |
ByteValue
This does not extend AbstractProperty since the JVM can take advantage of the 4 byte initial field alignment if
we don't extend a class that has fields.
|
class |
CharArray |
class |
CharValue |
class |
DateArray |
class |
DateTimeArray |
class |
DateTimeValue |
class |
DateValue |
class |
DefaultStreamingPropertyValue |
class |
DoubleArray |
class |
DoubleValue |
class |
DurationArray |
class |
DurationValue
|
class |
EdgeVertexIds |
class |
FloatArray |
class |
FloatingPointArray |
class |
FloatingPointValue |
class |
FloatValue |
class |
GeoCircleValue |
class |
GeoCollectionValue |
class |
GeoHashValue |
class |
GeoLineValue |
class |
GeoPointValue |
class |
GeoPolygonValue |
class |
GeoRectValue |
class |
GeoShapeValue |
class |
IntArray |
class |
IntegralArray |
class |
IntegralValue |
class |
IntValue |
class |
LocalDateTimeArray |
class |
LocalDateTimeValue |
class |
LocalTimeArray |
class |
LocalTimeValue |
class |
LongArray |
class |
LongValue |
class |
NonPrimitiveArray<T extends Comparable<? super T>> |
class |
NoValue
Not a value.
|
class |
NumberArray |
class |
NumberValue |
class |
ShortArray |
class |
ShortValue
This does not extend AbstractProperty since the JVM can take advantage of the 4 byte initial field alignment if
we don't extend a class that has fields.
|
class |
StreamingPropertyValue |
class |
StreamingPropertyValueBase |
class |
StreamingPropertyValueRef<T extends Graph> |
class |
StringArray |
class |
StringValue |
class |
TemporalArray<T extends Temporal & Comparable<? super T>,V extends TemporalValue<T,V>> |
class |
TemporalValue<T extends Temporal,V extends TemporalValue<T,V>> |
class |
TextArray |
class |
TextValue |
class |
TimeArray |
class |
TimeValue |
class |
UTF8StringValue |
class |
Value |
| Modifier and Type | Method and Description |
|---|---|
AnyValue |
TemporalValue.get(String fieldName) |
static AnyValue |
GeoPointValue.of(String str) |
AnyValue |
LongArray.value(int offset) |
AnyValue |
DoubleArray.value(int position) |
AnyValue |
FloatArray.value(int offset) |
AnyValue |
ShortArray.value(int offset) |
AnyValue |
ByteArray.value(int offset) |
AnyValue |
BooleanArray.value(int position) |
AnyValue |
IntArray.value(int offset) |
AnyValue |
TemporalArray.value(int offset) |
AnyValue |
StringArray.value(int offset) |
AnyValue |
DurationArray.value(int offset) |
AnyValue |
CharArray.value(int position) |
| Modifier and Type | Method and Description |
|---|---|
Iterator<AnyValue> |
ArrayValue.iterator() |
| Modifier and Type | Method and Description |
|---|---|
static double |
NumberValue.safeCastFloatingPoint(String name,
AnyValue value,
double defaultValue) |
static long |
IntegralValue.safeCastIntegral(String name,
AnyValue value,
long defaultValue) |
static LocalTimeValue |
LocalTimeValue.select(AnyValue from,
Supplier<ZoneId> defaultZone) |
static DateValue |
DateValue.select(AnyValue from,
Supplier<ZoneId> defaultZone) |
static DateTimeValue |
DateTimeValue.select(AnyValue from,
Supplier<ZoneId> defaultZone) |
static LocalDateTimeValue |
LocalDateTimeValue.select(AnyValue from,
Supplier<ZoneId> defaultZone) |
static TimeValue |
TimeValue.select(AnyValue from,
Supplier<ZoneId> defaultZone) |
Boolean |
NoValue.ternaryEquals(AnyValue other) |
Boolean |
Value.ternaryEquals(AnyValue other) |
| Modifier and Type | Class and Description |
|---|---|
class |
ErrorValue
The ErrorValue allow delaying errors in value creation until runtime, which is useful
if it turns out that the value is never used.
|
class |
ListValue |
class |
MapValue |
class |
NodeReference |
class |
NodeValue |
class |
PathValue |
static class |
PathValue.DirectPathValue |
class |
RelationshipReference |
class |
RelationshipValue |
class |
VirtualNodeValue |
class |
VirtualRelationshipValue |
| Modifier and Type | Method and Description |
|---|---|
AnyValue |
MapValueBuilder.add(String key,
AnyValue value) |
AnyValue[] |
ListValue.asArray() |
abstract AnyValue |
MapValue.get(String key) |
AnyValue |
ListValue.head() |
AnyValue |
ListValue.last() |
abstract AnyValue |
ListValue.value(int offset) |
| Modifier and Type | Method and Description |
|---|---|
Iterator<AnyValue> |
ListValue.iterator() |
Map<String,AnyValue> |
MapValue.toJavaMap() |
| Modifier and Type | Method and Description |
|---|---|
AnyValue |
MapValueBuilder.add(String key,
AnyValue value) |
ListValue |
ListValue.append(AnyValue... values) |
static ListValue |
VirtualValues.list(AnyValue... values) |
static MapValue |
VirtualValues.map(String[] keys,
AnyValue[] values) |
ListValue |
ListValue.prepend(AnyValue... values) |
Boolean |
MapValue.ternaryEquals(AnyValue other) |
MapValue |
MapValue.updatedWith(String key,
AnyValue value) |
| Modifier and Type | Method and Description |
|---|---|
int |
VirtualRelationshipValue.compareTo(VirtualValue other,
Comparator<AnyValue> comparator) |
int |
VirtualNodeValue.compareTo(VirtualValue other,
Comparator<AnyValue> comparator) |
int |
PathValue.compareTo(VirtualValue other,
Comparator<AnyValue> comparator) |
int |
MapValue.compareTo(VirtualValue other,
Comparator<AnyValue> comparator) |
int |
ErrorValue.compareTo(VirtualValue other,
Comparator<AnyValue> comparator) |
int |
ListValue.compareTo(VirtualValue other,
Comparator<AnyValue> comparator) |
MapValue |
MapValue.filter(BiFunction<String,AnyValue,Boolean> filterFunction) |
abstract <E extends Exception> |
MapValue.foreach(ThrowingBiConsumer<String,AnyValue,E> f) |
static ListValue |
VirtualValues.fromList(List<AnyValue> values) |
Copyright © 2016–2021 MWARE SOLUTIONS. All rights reserved.