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

com.google.protobuf.ByteStringWrap Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
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