Class PageInfo.TableInfo.Summary

java.lang.Object
org.spiderwiz.admin.data.PageInfo.TableInfo.Summary
Enclosing class:
PageInfo.TableInfo

public class PageInfo.TableInfo.Summary
extends Object
Defines codes that determine the value in the summary line for a specific table column.
  • Field Summary

    Fields 
    Modifier and Type Field Description
    static int MAX
    Specifies that the summary line for the referenced column shall contain the maximum of all the values in the column.
    static int NONE
    Specifies that no value shall be displayed in the summary line for the referenced column.
    static int TOTAL
    Specifies that the summary line for the referenced column shall contain the summary of all column values.
  • Constructor Summary

    Constructors 
    Constructor Description
    Summary()  
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • NONE

      public static final int NONE
      Specifies that no value shall be displayed in the summary line for the referenced column.
      See Also:
      Constant Field Values
    • TOTAL

      public static final int TOTAL
      Specifies that the summary line for the referenced column shall contain the summary of all column values.
      See Also:
      Constant Field Values
    • MAX

      public static final int MAX
      Specifies that the summary line for the referenced column shall contain the maximum of all the values in the column.
      See Also:
      Constant Field Values
  • Constructor Details