Interface ShortBuffer
-
- All Superinterfaces:
Buffer
- All Known Implementing Classes:
EaglerArrayShortBuffer
public interface ShortBuffer extends Buffer
Copyright (c) 2022-2023 LAX1DUDE. All Rights Reserved. WITH THE EXCEPTION OF PATCH FILES, MINIFIED JAVASCRIPT, AND ALL FILES NORMALLY FOUND IN AN UNMODIFIED MINECRAFT RESOURCE PACK, YOU ARE NOT ALLOWED TO SHARE, DISTRIBUTE, OR REPURPOSE ANY FILE USED BY OR PRODUCED BY THE SOFTWARE IN THIS REPOSITORY WITHOUT PRIOR PERMISSION FROM THE PROJECT AUTHOR. NOT FOR COMMERCIAL OR MALICIOUS USE (please read the 'LICENSE' file this repo's root directory for more info)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ShortBuffer
asReadOnlyBuffer()
ShortBuffer
clear()
ShortBuffer
compact()
ShortBuffer
duplicate()
ShortBuffer
flip()
short
get()
short
get(int index)
ShortBuffer
get(short[] dst)
ShortBuffer
get(short[] dst, int offset, int length)
int
getArrayOffset()
short
getElement(int index)
boolean
isDirect()
ShortBuffer
limit(int newLimit)
ShortBuffer
mark()
ShortBuffer
position(int newPosition)
ShortBuffer
put(int index, short b)
ShortBuffer
put(short b)
ShortBuffer
put(short[] src)
ShortBuffer
put(short[] src, int offset, int length)
ShortBuffer
put(ShortBuffer src)
void
putElement(int index, short value)
ShortBuffer
reset()
ShortBuffer
rewind()
ShortBuffer
slice()
-
Methods inherited from interface net.lax1dude.eaglercraft.v1_8.internal.buffer.Buffer
array, arrayOffset, capacity, hasArray, hasRemaining, isReadOnly, limit, position, remaining
-
-
-
-
Method Detail
-
slice
ShortBuffer slice()
-
duplicate
ShortBuffer duplicate()
-
asReadOnlyBuffer
ShortBuffer asReadOnlyBuffer()
-
get
short get()
-
put
ShortBuffer put(short b)
-
get
short get(int index)
-
put
ShortBuffer put(int index, short b)
-
getElement
short getElement(int index)
-
putElement
void putElement(int index, short value)
-
get
ShortBuffer get(short[] dst, int offset, int length)
-
get
ShortBuffer get(short[] dst)
-
put
ShortBuffer put(ShortBuffer src)
-
put
ShortBuffer put(short[] src, int offset, int length)
-
put
ShortBuffer put(short[] src)
-
getArrayOffset
int getArrayOffset()
-
compact
ShortBuffer compact()
-
mark
ShortBuffer mark()
-
reset
ShortBuffer reset()
-
clear
ShortBuffer clear()
-
flip
ShortBuffer flip()
-
rewind
ShortBuffer rewind()
-
limit
ShortBuffer limit(int newLimit)
-
position
ShortBuffer position(int newPosition)
-
-