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;
}
}