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

org.securegraph.util.ToElementIterable Maven / Gradle / Ivy

The newest version!
package org.securegraph.util;

import org.securegraph.Element;

public class ToElementIterable extends ConvertingIterable {
    public ToElementIterable(Iterable iterable) {
        super(iterable);
    }

    @Override
    protected Element convert(T o) {
        return o;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy