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

com.lambdazen.bitsy.index.VertexIndexMap Maven / Gradle / Ivy

package com.lambdazen.bitsy.index;

import java.util.Iterator;

import com.lambdazen.bitsy.store.VertexBean;

public class VertexIndexMap extends BitsyIndexMap {
    public VertexIndexMap() {
        super();
    }

    public void createKeyIndex(String key, Iterator iter) {
        VertexIndex index = new VertexIndex(key, iter);
        addKeyIndex(key, index);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy