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

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

There is a newer version: 7.13.0
Show newest version
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);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy