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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy