Structs

Inheritance: java.lang.Object

public abstract class Structs

Base class of struct array

Methods

MethodDescription
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:

ParameterTypeDescription
arg0java.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:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int

writeTo(Stream stream)

public void writeTo(Stream stream)

Write the content to specified stream

Parameters:

ParameterTypeDescription
streamStreamWhich stream to write the struct to

writeTo(OutputStream stream)

public void writeTo(OutputStream stream)

Parameters:

ParameterTypeDescription
streamjava.io.OutputStream