类 AggregateItem<T>

    • 构造器详细资料

      • AggregateItem

        public AggregateItem​(T item)
        参数:
        item - the item to wrap
      • AggregateItem

        public AggregateItem​(boolean header,
                             boolean footer)
    • 方法详细资料

      • getItem

        public T getItem()
        Accessor for the wrapped item.
        返回:
        the wrapped item
        抛出:
        java.lang.IllegalStateException - if called on a record for which either isHeader() or isFooter() answers true.
      • isFooter

        public boolean isFooter()
        Responds true if this record is a footer in an aggregate.
        返回:
        true if this is the end of an aggregate record.
      • isHeader

        public boolean isHeader()
        Responds true if this record is a header in an aggregate.
        返回:
        true if this is the beginning of an aggregate record.