BitMatrix

Inheritance: java.lang.Object

public class BitMatrix

Constructors

Constructor Description
BitMatrix(int dimension)
BitMatrix(int row, int col)

Methods

Method Description
equals(Object arg0)
equalsToList(BitMatrix array)
getClass()
getCol()
getRow()
getXY(int i, int j)
get_Item(int i, int j)
hashCode()
notify()
notifyAll()
set(int i, int j)
set_Item(int i, int j, boolean value)
toString()
unSet(int i, int j)
wait()
wait(long arg0)
wait(long arg0, int arg1)

BitMatrix(int dimension)

public BitMatrix(int dimension)

Parameters:

Parameter Type Description
dimension int

BitMatrix(int row, int col)

public BitMatrix(int row, int col)

Parameters:

Parameter Type Description
row int
col int

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

Parameter Type Description
arg0 java.lang.Object

Returns: boolean

equalsToList(BitMatrix array)

public boolean equalsToList(BitMatrix array)

Parameters:

Parameter Type Description
array BitMatrix

Returns: boolean

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

getCol()

public int getCol()

Returns: int

getRow()

public int getRow()

Returns: int

getXY(int i, int j)

public int getXY(int i, int j)

Parameters:

Parameter Type Description
i int
j int

Returns: int

get_Item(int i, int j)

public boolean get_Item(int i, int j)

Parameters:

Parameter Type Description
i int
j int

Returns: boolean

hashCode()

public native int hashCode()

Returns: int

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

set(int i, int j)

public void set(int i, int j)

Parameters:

Parameter Type Description
i int
j int

set_Item(int i, int j, boolean value)

public void set_Item(int i, int j, boolean value)

Parameters:

Parameter Type Description
i int
j int
value boolean

toString()

public String toString()

Returns: java.lang.String

unSet(int i, int j)

public void unSet(int i, int j)

Parameters:

Parameter Type Description
i int
j int

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