Class DomainRepresentation
- java.lang.Object
-
- it.unive.lisa.analysis.representation.DomainRepresentation
-
- All Implemented Interfaces:
java.lang.Comparable<DomainRepresentation>
- Direct Known Subclasses:
MapRepresentation,PairRepresentation,SetRepresentation,StringRepresentation
public abstract class DomainRepresentation extends java.lang.Object implements java.lang.Comparable<DomainRepresentation>
A structured representation of the abstract information present in a single instance ofSemanticDomain,NonRelationalDomain,DataflowElementor other types of domains. Instances of this class can be used to depict the content of an abstract element in a domain-agnostic way, such as dumping the information to a file.
-
-
Constructor Summary
Constructors Constructor Description DomainRepresentation()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description intcompareTo(DomainRepresentation o)abstract booleanequals(java.lang.Object obj)abstract inthashCode()abstract java.lang.StringtoString()
-
-
-
Method Detail
-
compareTo
public final int compareTo(DomainRepresentation o)
- Specified by:
compareToin interfacejava.lang.Comparable<DomainRepresentation>
-
hashCode
public abstract int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public abstract boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
toString
public abstract java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-