Class EngineStatus

  • All Implemented Interfaces:
    java.io.Serializable

    public class EngineStatus
    extends java.lang.Object
    implements java.io.Serializable
    This class provides status information for an Engine of a main report. This includes errors which occurred during execution of the report. Errors occurred in sub reports will also be included in the list provided by this class.
    Since:
    8.2
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      EngineError getError​(int index)
      Returns the EngineError at the given index.
      int getErrorCount()
      Returns the number of errors in this status
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getErrorCount

        public int getErrorCount()
        Returns the number of errors in this status
        Returns:
        number of errors in this engine status
        Since:
        8.2
      • getError

        public EngineError getError​(int index)
        Returns the EngineError at the given index.
        Parameters:
        index - index of the EngineError to fetch
        Returns:
        EngineError at the given index
        Throws:
        java.lang.IndexOutOfBoundsException - if index < 0 or index >= getErrorCount()
        Since:
        8.2