|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jouvieje.fmodex.utils.Pointer
org.jouvieje.fmoddesigner.structures.FMOD_EVENT_WAVEBANKINFO
Constructor Summary | |
FMOD_EVENT_WAVEBANKINFO()
Create an object that holds a null FMOD_EVENT_WAVEBANKINFO . |
Method Summary | |
static FMOD_EVENT_WAVEBANKINFO |
allocate()
Allocate a new FMOD_EVENT_WAVEBANKINFO . |
static FMOD_EVENT_WAVEBANKINFO[] |
allocate(int length)
Allocate and initialize a new FMOD_EVENT_WAVEBANKINFO[] . |
static FMOD_EVENT_WAVEBANKINFO |
asFMOD_EVENT_WAVEBANKINFO(Pointer pointer)
Create a view of the Pointer object as a FMOD_EVENT_WAVEBANKINFO object. |
int |
getMaxStreams()
[out] Maximum number of times this wave bank will be opened for streaming. |
java.nio.CharBuffer |
getName()
[out] Name of this wave bank. |
int |
getNumStreams()
[out] Number of times this wave bank has been opened for streaming. |
int |
getSampleMemory()
[out] Amount of memory (in bytes) used by samples. |
int |
getSampleRefCnt()
[out] Number of sample references to this wave bank made by events in this event system. |
int |
getStreamMemory()
[out] Amount of memory (in bytes) used by streams. |
int |
getStreamRefCnt()
[out] Number of stream references to this wave bank made by events in this event system. |
int |
getStreamSinuse()
[out] Number of streams currently in use. |
int |
getType()
[out] 0 = stream from disk, 1 = load into memory, 2 = decompress into memory. |
void |
release()
|
Methods inherited from class org.jouvieje.fmodex.utils.Pointer |
asByteBuffer, asDouble, asFloat, asInt, asLong, asPointer, asString, asString, equals, isNull, shareMemory |
Methods inherited from class java.lang.Object |
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public FMOD_EVENT_WAVEBANKINFO()
FMOD_EVENT_WAVEBANKINFO
.isNull()
on the object created will returns true. FMOD_EVENT_WAVEBANKINFO obj = new FMOD_EVENT_WAVEBANKINFO();
(obj == null) <=> false
obj.isNull() <=> true
To creates a new FMOD_EVENT_WAVEBANKINFO
, use the static "constructor" :
FMOD_EVENT_WAVEBANKINFO obj = FMOD_EVENT_WAVEBANKINFO.allocate();
allocate()
Method Detail |
public static FMOD_EVENT_WAVEBANKINFO asFMOD_EVENT_WAVEBANKINFO(Pointer pointer)
Pointer
object as a FMOD_EVENT_WAVEBANKINFO
object.Pointer
holds a FMOD_EVENT_WAVEBANKINFO object.
public static FMOD_EVENT_WAVEBANKINFO[] allocate(int length)
FMOD_EVENT_WAVEBANKINFO[]
.
length
- length of the array returned.public static FMOD_EVENT_WAVEBANKINFO allocate()
FMOD_EVENT_WAVEBANKINFO
.isNull()
on the object created will return false. FMOD_EVENT_WAVEBANKINFO obj = FMOD_EVENT_WAVEBANKINFO.allocate();
(obj == null) <=> obj.isNull() <=> false
public void release()
public java.nio.CharBuffer getName()
public int getStreamRefCnt()
public int getSampleRefCnt()
public int getNumStreams()
public int getMaxStreams()
public int getStreamSinuse()
public int getStreamMemory()
public int getSampleMemory()
public int getType()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |