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

oracle.sql.RAW Maven / Gradle / Ivy

The newest version!
package oracle.sql;

public class RAW {

  private byte[] rawBytes;

  public RAW(byte[] rawBytes) {
    this.rawBytes = rawBytes;
  }

  public byte[] getBytes() {
    return this.rawBytes.clone();
  }

  public byte[] shareBytes() {
    return this.rawBytes;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy