|
|||||||||||
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.fmodex.structures.FMOD_GUID
Constructor Summary | |
FMOD_GUID()
Create an object that holds a null FMOD_GUID . |
Method Summary | |
static FMOD_GUID |
allocate()
Allocate a new FMOD_GUID . |
static FMOD_GUID |
asFMOD_GUID(Pointer pointer)
Create a view of the Pointer object as a FMOD_GUID object. |
int |
getData1()
Specifies the first 8 hexadecimal digits of the GUID |
short |
getData2()
Specifies the first group of 4 hexadecimal digits. |
short |
getData3()
Specifies the second group of 4 hexadecimal digits. |
java.nio.CharBuffer |
getData4()
Array of 8 bytes. |
void |
release()
|
void |
setData1(int data1)
Specifies the first 8 hexadecimal digits of the GUID |
void |
setData2(short data2)
Specifies the first group of 4 hexadecimal digits. |
void |
setData3(short data3)
Specifies the second group of 4 hexadecimal digits. |
void |
setData4(java.lang.String data4)
Array of 8 bytes. |
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_GUID()
FMOD_GUID
.isNull()
on the object created will returns true. FMOD_GUID obj = new FMOD_GUID();
(obj == null) <=> false
obj.isNull() <=> true
To creates a new FMOD_GUID
, use the static "constructor" :
FMOD_GUID obj = FMOD_GUID.allocate();
allocate()
Method Detail |
public static FMOD_GUID asFMOD_GUID(Pointer pointer)
Pointer
object as a FMOD_GUID
object.Pointer
holds a FMOD_GUID object.
public static FMOD_GUID allocate()
FMOD_GUID
.isNull()
on the object created will return false. FMOD_GUID obj = FMOD_GUID.allocate();
(obj == null) <=> obj.isNull() <=> false
public void release()
public int getData1()
public void setData1(int data1)
public short getData2()
public void setData2(short data2)
public short getData3()
public void setData3(short data3)
public java.nio.CharBuffer getData4()
public void setData4(java.lang.String data4)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |