All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.vertexium.blueprints.VertexiumBlueprintsGraphFeatures Maven / Gradle / Ivy

There is a newer version: 3.2.3
Show newest version
package org.vertexium.blueprints;

import com.tinkerpop.blueprints.Features;

public class VertexiumBlueprintsGraphFeatures extends Features {
    public VertexiumBlueprintsGraphFeatures() {
        ignoresSuppliedIds = false;
        isPersistent = true;
        isWrapper = false;

        supportsBooleanProperty = true;
        supportsDoubleProperty = true;
        supportsFloatProperty = true;
        supportsIntegerProperty = true;
        supportsLongProperty = true;
        supportsMapProperty = true;
        supportsMixedListProperty = true;
        supportsPrimitiveArrayProperty = true;
        supportsSerializableObjectProperty = true;
        supportsUniformListProperty = true;

        supportsDuplicateEdges = true;
        supportsEdgeIndex = false;
        supportsEdgeIteration = true;
        supportsEdgeKeyIndex = true;
        supportsEdgeProperties = true;
        supportsEdgeRetrieval = true;
        supportsIndices = false;
        supportsKeyIndices = true;
        supportsSelfLoops = true;
        supportsStringProperty = true;
        supportsThreadedTransactions = false;
        supportsThreadIsolatedTransactions = false;
        supportsTransactions = false;
        supportsVertexIndex = false;
        supportsVertexIteration = true;
        supportsVertexKeyIndex = true;
        supportsVertexProperties = true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy