com.tinkerpop.rexster.gremlin.converter.ConsoleResultConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rexster-protocol Show documentation
Show all versions of rexster-protocol Show documentation
RexPro is a binary protocol for Rexster graph server.
package com.tinkerpop.rexster.gremlin.converter;
import java.io.Writer;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
public class ConsoleResultConverter implements ResultConverter> {
private static final String LINE_SEPARATOR = System.getProperty("line.separator");
private final Writer outputWriter;
public ConsoleResultConverter(final Writer outputWriter) {
this.outputWriter = outputWriter;
}
public List convert(final Object result) throws Exception {
try {
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy