public interface org.apache.commons.math3.analysis.integration.UnivariateIntegrator
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: org.apache.commons.math3.analysis.integration.UnivariateIntegrator
  super_class: java.lang.Object
{
  public abstract double getRelativeAccuracy();
    descriptor: ()D
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract double getAbsoluteAccuracy();
    descriptor: ()D
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract int getMinimalIterationCount();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract int getMaximalIterationCount();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract double integrate(int, org.apache.commons.math3.analysis.UnivariateFunction, double, double);
    descriptor: (ILorg/apache/commons/math3/analysis/UnivariateFunction;DD)D
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.apache.commons.math3.exception.TooManyEvaluationsException, org.apache.commons.math3.exception.MaxCountExceededException, org.apache.commons.math3.exception.MathIllegalArgumentException, org.apache.commons.math3.exception.NullArgumentException
    MethodParameters:
         Name  Flags
      maxEval  
      f        
      min      
      max      

  public abstract int getEvaluations();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract int getIterations();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
}
SourceFile: "UnivariateIntegrator.java"