Class PerformanceAttributes

java.lang.Object
com.appiancorp.suiteapi.process.analytics2.PerformanceAttributes
All Implemented Interfaces:
Serializable

public class PerformanceAttributes extends Object implements Serializable
This object represents the attribute that was executed while generating the report. Various metrics such as no. of rows affected, time taken by the attribute to execute etc. are available.
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    com.appiancorp.suiteapi.process.analytics2.PerformanceAttributes.CompositeOrder
    Returns the order in which the attribute is in relation to the shard and the main.
    Returns the description of the attribute.
    int
    Returns the order in which the attribute was applied in relation to the main.
    int
    Deprecated.
    use getMainOrder() instead
    Returns the name of the attribute.
    int
    Returns the order in which the attribute was applied in relation to the shard.
    Returns name of the resource where the operation was executed.
    int
    Returns the number of rows affected by the attribute during report generation.
    double
    Returns the amount of time taken by the attribute to execute during report generation.
    Returns the type of the attribute.
    void
    setDescription(String description_)
    Sets the description of the attribute
    void
    setMainOrder(int mainOrder_)
    Sets the order in which the attribute will be applied in relation to the main.
    void
    setMasterOrder(int mainOrder_)
    Deprecated.
    use setMainOrder(int) instead
    void
    setName(String name_)
    Sets the name of the attribute
    void
    setOrder(int order_)
    Sets the order in which the attribute will be applied in relation to the shard.
    void
    setResource(String resource)
    Sets name of the resource where the operation was executed.
    void
    setRowsAffected(int rowsAffected_)
    Set the number of rows affected during report generation.
    void
    setTime(double time_)
    Sets the amount of time taken by the attribute to execute during report generation.
    void
    setType(String type_)
    Sets the type of attribute
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • PerformanceAttributes

      public PerformanceAttributes()
  • Method Details

    • getName

      public String getName()
      Returns the name of the attribute.
    • setName

      public void setName(String name_)
      Sets the name of the attribute
    • getType

      public String getType()
      Returns the type of the attribute. Example : Sort Column, Filter
    • setType

      public void setType(String type_)
      Sets the type of attribute
    • getResource

      public String getResource()
      Returns name of the resource where the operation was executed.
    • setResource

      public void setResource(String resource)
      Sets name of the resource where the operation was executed.
    • getTime

      public double getTime()
      Returns the amount of time taken by the attribute to execute during report generation.
    • setTime

      public void setTime(double time_)
      Sets the amount of time taken by the attribute to execute during report generation.
    • getRowsAffected

      public int getRowsAffected()
      Returns the number of rows affected by the attribute during report generation.
    • setRowsAffected

      public void setRowsAffected(int rowsAffected_)
      Set the number of rows affected during report generation.
      Parameters:
      rowsAffected_ -
    • getDescription

      public String getDescription()
      Returns the description of the attribute.
    • setDescription

      public void setDescription(String description_)
      Sets the description of the attribute
    • getOrder

      public int getOrder()
      Returns the order in which the attribute was applied in relation to the shard.
    • setOrder

      public void setOrder(int order_)
      Sets the order in which the attribute will be applied in relation to the shard.
    • getMasterOrder

      @Deprecated public int getMasterOrder()
      Deprecated.
      use getMainOrder() instead
      Returns the order in which the attribute was applied in relation to the main.
    • getMainOrder

      public int getMainOrder()
      Returns the order in which the attribute was applied in relation to the main.
    • setMasterOrder

      @Deprecated public void setMasterOrder(int mainOrder_)
      Deprecated.
      use setMainOrder(int) instead
      Sets the order in which the attribute will be applied in relation to the main.
    • setMainOrder

      public void setMainOrder(int mainOrder_)
      Sets the order in which the attribute will be applied in relation to the main.
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • getCompositeOrder

      public com.appiancorp.suiteapi.process.analytics2.PerformanceAttributes.CompositeOrder getCompositeOrder()
      Returns the order in which the attribute is in relation to the shard and the main.