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

apoc.result.RowResult Maven / Gradle / Ivy

There is a newer version: 5.25.1
Show newest version
package apoc.result;

import java.util.Map;

/**
 * @author mh
 * @since 26.02.16
 */
public class RowResult {
    public final Map row;

    public RowResult(Map row) {
        this.row = row;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy