|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.mit.csail.sdg.alloy4compiler.sim.SimTuple
public final class SimTuple
Immutable; represents a tuple.
Thread Safety: Safe.
Method Summary | |
---|---|
SimTuple |
append(SimAtom atom)
Append the given atom to the back of this tuple, then return the resulting new Tuple. |
int |
arity()
Returns the arity of this tuple. |
boolean |
equals(java.lang.Object that)
|
SimAtom |
get(int i)
Return the i-th atom from this tuple. |
boolean |
has(SimAtom atom)
Returns true if this tuple contains at least one occurrence of the given atom. |
int |
hashCode()
|
SimAtom |
head()
Returns the first atom of this tuple. |
SimTuple |
head(int n)
Returns the subtuple containing the first n atoms (n must be between 1 and arity) |
java.util.Iterator<SimAtom> |
iterator()
|
SimTuple |
join(SimTuple that)
Return the relational join of this tuple and that tuple; throws an exception if the join point doesn't match or if both sides are unary. |
static SimTuple |
make(java.util.List<SimAtom> list)
Construct the n-ary tuple; throws an exception if the given list is empty. |
static SimTuple |
make(SimAtom atom)
Construct the unary tuple containing the given atom. |
static SimTuple |
make(SimAtom a,
SimAtom b)
Construct the binary tuple (a,b) |
static SimTuple |
make(java.lang.String atom)
Construct the unary tuple containing the given atom. |
static SimTuple |
make(java.lang.String[] atoms)
Construct the tuple containing the given list of atoms; the list must not be empty. |
SimTuple |
prepend(SimAtom atom)
Prepend the given atom to the front of this tuple, then return the resulting new Tuple. |
SimTuple |
product(SimTuple that)
Return the product of this tuple and that tuple. |
SimTuple |
replace(int i,
SimAtom newAtom)
Replace the i-th atom, and return the resulting SimTuple. |
SimTuple |
replace(java.util.Map<SimAtom,SimAtom> map)
Replace each atom using the given SimAtom->SimAtom map; any atom not in the map will stay unchanged. |
SimAtom |
tail()
Returns the last atom of this tuple. |
SimTuple |
tail(int n)
Returns the subtuple containing the last n atoms (n must be between 1 and arity) |
java.lang.String |
toString()
|
void |
toString(java.lang.StringBuilder sb)
Write a human-readable representation of this tuple into the given StringBuilder object. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Method Detail |
---|
public static SimTuple make(java.util.List<SimAtom> list)
public static SimTuple make(SimAtom a, SimAtom b)
public static SimTuple make(SimAtom atom)
public static SimTuple make(java.lang.String atom)
public static SimTuple make(java.lang.String[] atoms)
public int arity()
public SimAtom get(int i)
public boolean has(SimAtom atom)
public SimTuple replace(int i, SimAtom newAtom)
public SimTuple replace(java.util.Map<SimAtom,SimAtom> map)
public SimTuple prepend(SimAtom atom)
public SimTuple append(SimAtom atom)
public SimTuple product(SimTuple that)
public SimTuple join(SimTuple that)
public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object that)
equals
in class java.lang.Object
public SimAtom head()
public SimAtom tail()
public SimTuple head(int n)
public SimTuple tail(int n)
public void toString(java.lang.StringBuilder sb)
public java.lang.String toString()
toString
in class java.lang.Object
public java.util.Iterator<SimAtom> iterator()
iterator
in interface java.lang.Iterable<SimAtom>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |