[all packages]
[package net.sf.pizzacompiler.lang]
[class hierarchy]
[index]
public class net.sf.pizzacompiler.lang.Cell<A>
(source file: /home/enno/source/tmp/pizza/main/src/net/sf/pizzacompiler/lang/Cell.pizza)
java.lang.Object
|
+----net.sf.pizzacompiler.lang.Cell<A>
The pure class interface.
public class Cell<A>
implements java.io.Serializable
-
A class for (mutable) cells of values.
- Cell(A)
-
Constructs a new Cell.
- value
-
- equals(Object)
- is this cell (structurally) equal to another cell?
- hashCode()
-
a hashcode for this cell.
- toString()
- a string representation of this cell
Cell
public case Cell(A value);
-
Constructs a new Cell.
- Parameters:
- value - value in the cell
value
public A value;
hashCode
public int hashCode();
-
a hashcode for this cell.
- Overrides:
- hashCode in class Object
equals
public boolean equals(Object other);
- is this cell (structurally) equal to another cell?
- Overrides:
- equals in class Object
toString
public String toString();
- a string representation of this cell
- Overrides:
- toString in class Object
[all packages]
[package net.sf.pizzacompiler.lang]
[class hierarchy]
[index]
net.sf.pizzacompiler.lang.Cell.html