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

com.arangodb.util.RawData Maven / Gradle / Ivy

package com.arangodb.util;

/**
 * Wrapper for raw data, current implementations are:
 * - {@link RawBytes}
 * - {@link RawJson}
 */
public interface RawData {
    static RawJson of(final String value) {
        return RawJson.of(value);
    }

    static RawBytes of(final byte[] value) {
        return RawBytes.of(value);
    }

    T get();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy