java.nio.ReadOnlyHeapByteBuffer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dragome-js-jre Show documentation
Show all versions of dragome-js-jre Show documentation
Dragome SDK module: js-jre
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package java.nio;
/** HeapByteBuffer, ReadWriteHeapByteBuffer and ReadOnlyHeapByteBuffer compose the implementation of array based byte buffers.
*
* ReadOnlyHeapByteBuffer extends HeapByteBuffer with all the write methods throwing read only exception.
*
*
* This class is marked final for runtime performance.
*
*/
final class ReadOnlyHeapByteBuffer extends HeapByteBuffer {
static ReadOnlyHeapByteBuffer copy (HeapByteBuffer other, int markOfOther) {
ReadOnlyHeapByteBuffer buf = new ReadOnlyHeapByteBuffer(other.backingArray, other.capacity(), other.offset);
buf.limit = other.limit();
buf.position = other.position();
buf.mark = markOfOther;
buf.order(other.order());
return buf;
}
ReadOnlyHeapByteBuffer (byte[] backingArray, int capacity, int arrayOffset) {
super(backingArray, capacity, arrayOffset);
}
public ByteBuffer asReadOnlyBuffer () {
return copy(this, mark);
}
public ByteBuffer compact () {
throw new ReadOnlyBufferException();
}
public ByteBuffer duplicate () {
return copy(this, mark);
}
public boolean isReadOnly () {
return true;
}
protected byte[] protectedArray () {
throw new ReadOnlyBufferException();
}
protected int protectedArrayOffset () {
throw new ReadOnlyBufferException();
}
protected boolean protectedHasArray () {
return false;
}
public ByteBuffer put (byte b) {
throw new ReadOnlyBufferException();
}
public ByteBuffer put (int index, byte b) {
throw new ReadOnlyBufferException();
}
public ByteBuffer put (byte[] src, int off, int len) {
throw new ReadOnlyBufferException();
}
public ByteBuffer putDouble (double value) {
throw new ReadOnlyBufferException();
}
public ByteBuffer putDouble (int index, double value) {
throw new ReadOnlyBufferException();
}
public ByteBuffer putFloat (float value) {
throw new ReadOnlyBufferException();
}
public ByteBuffer putFloat (int index, float value) {
throw new ReadOnlyBufferException();
}
public ByteBuffer putInt (int value) {
throw new ReadOnlyBufferException();
}
public ByteBuffer putInt (int index, int value) {
throw new ReadOnlyBufferException();
}
public ByteBuffer putLong (int index, long value) {
throw new ReadOnlyBufferException();
}
public ByteBuffer putLong (long value) {
throw new ReadOnlyBufferException();
}
public ByteBuffer putShort (int index, short value) {
throw new ReadOnlyBufferException();
}
public ByteBuffer putShort (short value) {
throw new ReadOnlyBufferException();
}
public ByteBuffer put (ByteBuffer buf) {
throw new ReadOnlyBufferException();
}
public ByteBuffer slice () {
ReadOnlyHeapByteBuffer slice = new ReadOnlyHeapByteBuffer(backingArray, remaining(), offset + position);
slice.order = order;
return slice;
}
}