com.google.protobuf.ByteStringWrap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
package com.google.protobuf;
public class ByteStringWrap {
public static ByteString wrap(byte[] bytes) {
return ByteString.wrap(bytes);
}
public static ByteString wrap(byte[] bytes, int offset, int length) {
return ByteString.wrap(bytes, offset, length);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy