Enum Class EmptyParamProvider

java.lang.Object
java.lang.Enum<EmptyParamProvider>
pascal.taie.analysis.pta.core.solver.EmptyParamProvider
All Implemented Interfaces:
Serializable, Comparable<EmptyParamProvider>, Constable, ParamProvider

public enum EmptyParamProvider extends Enum<EmptyParamProvider> implements ParamProvider
This ParamProvider ignored all parameters.
  • Enum Constant Details

  • Method Details

    • values

      public static EmptyParamProvider[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static EmptyParamProvider valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • get

      public static EmptyParamProvider get()
    • getThisObjs

      public Set<Obj> getThisObjs()
      Specified by:
      getThisObjs in interface ParamProvider
      Returns:
      the objects for this variable.
    • getParamObjs

      public Set<Obj> getParamObjs(int i)
      Specified by:
      getParamObjs in interface ParamProvider
      Returns:
      the objects for i-th parameter (starting from 0).
    • getFieldObjs

      public TwoKeyMultiMap<Obj,JField,Obj> getFieldObjs()
      Specified by:
      getFieldObjs in interface ParamProvider
      Returns:
      the objects pointed to by parameter objects' fields.
    • getArrayObjs

      public MultiMap<Obj,Obj> getArrayObjs()
      Specified by:
      getArrayObjs in interface ParamProvider
      Returns:
      the elements contained in parameter arrays.