|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.mit.csail.sdg.alloy4viz.AlloyTuple
public final class AlloyTuple
Immutable; represents an Alloy tuple.
Thread Safety: Can be called only by the AWT event thread.
Constructor Summary | |
---|---|
AlloyTuple(AlloyAtom... atoms)
Creates a new AlloyTuple containing the atoms specified by the list; atoms.size() must be 2 or above. |
|
AlloyTuple(java.util.List<AlloyAtom> atoms)
Creates a new AlloyTuple containing the atoms specified by the list; atoms.size() must be 2 or above. |
Method Summary | |
---|---|
int |
compareTo(AlloyTuple that)
Two tuples are first compared based on length; if the length is the same, we compare atom-by-atom. |
boolean |
equals(java.lang.Object other)
Two tuples are equal if they have the same atoms in the same order. |
int |
getArity()
Returns the arity of this AlloyTuple. |
java.util.List<AlloyAtom> |
getAtoms()
Returns an unmodifiable list of the AlloyAtoms in this AlloyTuple. |
AlloyAtom |
getEnd()
Returns the last AlloyAtom in this AlloyTuple. |
AlloyAtom |
getStart()
Returns the first AlloyAtom in this AlloyTuple. |
int |
hashCode()
Compute a hash code based on the list of atoms. |
ConstList<AlloyAtom> |
project(java.util.Collection<java.lang.Integer> columns)
Project this tuple and return an unmodifiable list of remaining atoms (after removing zero or more columns) |
AlloyTuple |
reverse()
Returns a new AlloyTuple whose list of atoms is the same but in reverse. |
java.lang.String |
toString()
Provides a human-readable description of this AlloyTuple. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public AlloyTuple(java.util.List<AlloyAtom> atoms)
public AlloyTuple(AlloyAtom... atoms)
Method Detail |
---|
public ConstList<AlloyAtom> project(java.util.Collection<java.lang.Integer> columns)
columns
- - the collection of columns to remove (0 is the first column, 1 is the second column...)public int getArity()
public java.util.List<AlloyAtom> getAtoms()
public AlloyAtom getStart()
public AlloyAtom getEnd()
public AlloyTuple reverse()
public java.lang.String toString()
toString
in class java.lang.Object
public int compareTo(AlloyTuple that)
compareTo
in interface java.lang.Comparable<AlloyTuple>
public boolean equals(java.lang.Object other)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |