Structs
Inheritance: java.lang.Object
public abstract class Structs
Base class of struct array
Methods
Method | Description |
---|---|
equals(Object arg0) | |
getClass() | |
hashCode() | |
length() | Length of this array |
notify() | |
notifyAll() | |
structSize() | Size in bytes of single struct |
toString() | |
wait() | |
wait(long arg0) | |
wait(long arg0, int arg1) | |
writeTo(Stream stream) | Write the content to specified stream |
writeTo(OutputStream stream) |
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object |
Returns: boolean
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
hashCode()
public native int hashCode()
Returns: int
length()
public final int length()
Length of this array
Returns: int - number of elements in this array
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
structSize()
public final int structSize()
Size in bytes of single struct
Returns: int - the size of the struct
toString()
public String toString()
Returns: java.lang.String
wait()
public final void wait()
wait(long arg0)
public final void wait(long arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long | |
arg1 | int |
writeTo(Stream stream)
public void writeTo(Stream stream)
Write the content to specified stream
Parameters:
Parameter | Type | Description |
---|---|---|
stream | Stream | Which stream to write the struct to |
writeTo(OutputStream stream)
public void writeTo(OutputStream stream)
Parameters:
Parameter | Type | Description |
---|---|---|
stream | java.io.OutputStream |