IntBitmap

Inheritance: java.lang.Object

public class IntBitmap

Constructors

Constructor Description
IntBitmap(int width, int height)
IntBitmap(int[][] mas, int width, int height)
IntBitmap(int width, int height, int defaultValue)
IntBitmap(int width, int height, int[] data)
IntBitmap(IntBitmap intBitmap)

Methods

Method Description
equals(Object arg0)
getClass()
getData()
getHeight()
getWidth()
get_Item(int x, int y)
hashCode()
notify()
notifyAll()
set_Item(int x, int y, int value)
toSingleArray()
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

IntBitmap(int width, int height)

public IntBitmap(int width, int height)

Parameters:

Parameter Type Description
width int
height int

IntBitmap(int[][] mas, int width, int height)

public IntBitmap(int[][] mas, int width, int height)

Parameters:

Parameter Type Description
mas int[][]
width int
height int

IntBitmap(int width, int height, int defaultValue)

public IntBitmap(int width, int height, int defaultValue)

Parameters:

Parameter Type Description
width int
height int
defaultValue int

IntBitmap(int width, int height, int[] data)

public IntBitmap(int width, int height, int[] data)

Parameters:

Parameter Type Description
width int
height int
data int[]

IntBitmap(IntBitmap intBitmap)

public IntBitmap(IntBitmap intBitmap)

Parameters:

Parameter Type Description
intBitmap IntBitmap

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

getData()

public int[] getData()

Returns: int[]

getHeight()

public int getHeight()

Returns: int

getWidth()

public int getWidth()

Returns: int

get_Item(int x, int y)

public int get_Item(int x, int y)

Parameters:

Parameter Type Description
x int
y int

Returns: int

hashCode()

public native int hashCode()

Returns: int

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

set_Item(int x, int y, int value)

public void set_Item(int x, int y, int value)

Parameters:

Parameter Type Description
x int
y int
value int

toSingleArray()

public int[] toSingleArray()

Returns: int[]

toString()

public String toString()

Returns: java.lang.String

wait()

public final void wait()

wait(long arg0)

public final native 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