Record Class EntryPoint
java.lang.Object
java.lang.Record
pascal.taie.analysis.pta.core.solver.EntryPoint
Represents entry points in pointer analysis. Each entry specifies:
- an entry method
- the parameter objects provider for this variable/parameters of the entry method.
- See Also:
-
Constructor Summary
ConstructorDescriptionEntryPoint
(JMethod method, ParamProvider paramProvider) Creates an instance of aEntryPoint
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.method()
Returns the value of themethod
record component.Returns the value of theparamProvider
record component.toString()
Returns a string representation of this record class.
-
Constructor Details
-
EntryPoint
Creates an instance of aEntryPoint
record class.- Parameters:
method
- the value for themethod
record componentparamProvider
- the value for theparamProvider
record component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
method
Returns the value of themethod
record component.- Returns:
- the value of the
method
record component
-
paramProvider
Returns the value of theparamProvider
record component.- Returns:
- the value of the
paramProvider
record component
-