public static interface Graph.Features.DataTypeFeatures extends Graph.Features.FeatureSet
Modifier and Type | Field and Description |
---|---|
static String |
FEATURE_BOOLEAN_ARRAY_VALUES |
static String |
FEATURE_BOOLEAN_VALUES |
static String |
FEATURE_BYTE_ARRAY_VALUES |
static String |
FEATURE_BYTE_VALUES |
static String |
FEATURE_DOUBLE_ARRAY_VALUES |
static String |
FEATURE_DOUBLE_VALUES |
static String |
FEATURE_FLOAT_ARRAY_VALUES |
static String |
FEATURE_FLOAT_VALUES |
static String |
FEATURE_INTEGER_ARRAY_VALUES |
static String |
FEATURE_INTEGER_VALUES |
static String |
FEATURE_LONG_ARRAY_VALUES |
static String |
FEATURE_LONG_VALUES |
static String |
FEATURE_MAP_VALUES |
static String |
FEATURE_MIXED_LIST_VALUES |
static String |
FEATURE_SERIALIZABLE_VALUES |
static String |
FEATURE_STRING_ARRAY_VALUES |
static String |
FEATURE_STRING_VALUES |
static String |
FEATURE_UNIFORM_LIST_VALUES |
Modifier and Type | Method and Description |
---|---|
default boolean |
supportsBooleanArrayValues()
Supports setting of an array of boolean values.
|
default boolean |
supportsBooleanValues()
Supports setting of a boolean value.
|
default boolean |
supportsByteArrayValues()
Supports setting of an array of byte values.
|
default boolean |
supportsByteValues()
Supports setting of a byte value.
|
default boolean |
supportsDoubleArrayValues()
Supports setting of an array of double values.
|
default boolean |
supportsDoubleValues()
Supports setting of a double value.
|
default boolean |
supportsFloatArrayValues()
Supports setting of an array of float values.
|
default boolean |
supportsFloatValues()
Supports setting of a float value.
|
default boolean |
supportsIntegerArrayValues()
Supports setting of an array of integer values.
|
default boolean |
supportsIntegerValues()
Supports setting of a integer value.
|
default boolean |
supportsLongArrayValues()
Supports setting of an array of long values.
|
default boolean |
supportsLongValues()
Supports setting of a long value.
|
default boolean |
supportsMapValues()
Supports setting of a
Map value. |
default boolean |
supportsMixedListValues()
Supports setting of a
List value. |
default boolean |
supportsSerializableValues()
Supports setting of a Java serializable value.
|
default boolean |
supportsStringArrayValues()
Supports setting of an array of string values.
|
default boolean |
supportsStringValues()
Supports setting of a string value.
|
default boolean |
supportsUniformListValues()
Supports setting of a
List value. |
static final String FEATURE_BOOLEAN_VALUES
static final String FEATURE_BYTE_VALUES
static final String FEATURE_DOUBLE_VALUES
static final String FEATURE_FLOAT_VALUES
static final String FEATURE_INTEGER_VALUES
static final String FEATURE_LONG_VALUES
static final String FEATURE_MAP_VALUES
static final String FEATURE_MIXED_LIST_VALUES
static final String FEATURE_BOOLEAN_ARRAY_VALUES
static final String FEATURE_BYTE_ARRAY_VALUES
static final String FEATURE_DOUBLE_ARRAY_VALUES
static final String FEATURE_FLOAT_ARRAY_VALUES
static final String FEATURE_INTEGER_ARRAY_VALUES
static final String FEATURE_LONG_ARRAY_VALUES
static final String FEATURE_SERIALIZABLE_VALUES
static final String FEATURE_STRING_ARRAY_VALUES
static final String FEATURE_STRING_VALUES
static final String FEATURE_UNIFORM_LIST_VALUES
default boolean supportsBooleanValues()
default boolean supportsByteValues()
default boolean supportsDoubleValues()
default boolean supportsFloatValues()
default boolean supportsIntegerValues()
default boolean supportsLongValues()
default boolean supportsMapValues()
Map
value. The assumption is that the Map
can contain
arbitrary serializable values that may or may not be defined as a feature itself.default boolean supportsMixedListValues()
List
value. The assumption is that the List
can contain
arbitrary serializable values that may or may not be defined as a feature itself. As this
List
is "mixed" it does not need to contain objects of the same type.supportsMixedListValues()
default boolean supportsBooleanArrayValues()
default boolean supportsByteArrayValues()
default boolean supportsDoubleArrayValues()
default boolean supportsFloatArrayValues()
default boolean supportsIntegerArrayValues()
default boolean supportsStringArrayValues()
default boolean supportsLongArrayValues()
default boolean supportsSerializableValues()
default boolean supportsStringValues()
default boolean supportsUniformListValues()
List
value. The assumption is that the List
can contain
arbitrary serializable values that may or may not be defined as a feature itself. As this
List
is "uniform" it must contain objects of the same type.supportsMixedListValues()
Copyright © 2013–2020 Apache Software Foundation. All rights reserved.