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

org.apache.tinkerpop.gremlin.tinkergraph.structure.SpecializedTinkerEdge Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.tinkerpop.gremlin.tinkergraph.structure;

import org.apache.tinkerpop.gremlin.structure.Property;
import org.apache.tinkerpop.gremlin.structure.Vertex;
import org.apache.tinkerpop.gremlin.util.iterator.IteratorUtils;

import java.util.*;

public abstract class SpecializedTinkerEdge extends TinkerEdge {

    private final Set specificKeys;

    protected SpecializedTinkerEdge(Object id, Vertex outVertex, String label, Vertex inVertex, Set specificKeys) {
        super(id, outVertex, label, inVertex);
        this.specificKeys = specificKeys;
    }

    @Override
    public Set keys() {
        return specificKeys;
    }

    @Override
    public  Property property(String key) {
        return specificProperty(key);
    }

    /* implement in concrete specialised instance to avoid using generic HashMaps */
    protected abstract  Property specificProperty(String key);

    @Override
    public  Iterator> properties(String... propertyKeys) {
        if (propertyKeys.length == 0) {
            return (Iterator) specificKeys.stream().map(key -> property(key)).filter(vp -> vp.isPresent()).iterator();
        } else if (propertyKeys.length == 1) { // treating as special case for performance
            return IteratorUtils.of(property(propertyKeys[0]));
        } else {
            return Arrays.stream(propertyKeys).map(key -> (Property) property(key)).filter(vp -> vp.isPresent()).iterator();
        }
    }

    @Override
    public  Property property(String key, V value) {
        return updateSpecificProperty(key, value);
    }

    protected abstract  Property updateSpecificProperty(String key, V value);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy