Class ReturningClause

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.util.List<java.lang.Object> dataItems
      List of output targets like Table or UserVariable
      private ReturningClause.Keyword keyword  
      • Fields inherited from class java.util.AbstractList

        modCount
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.StringBuilder appendTo​(java.lang.StringBuilder builder)  
      java.util.List<?> getDataItems()  
      ReturningClause.Keyword getKeyword()  
      ReturningClause setKeyword​(ReturningClause.Keyword keyword)  
      java.lang.String toString()  
      • Methods inherited from class java.util.ArrayList

        add, add, addAll, addAll, clear, clone, contains, ensureCapacity, forEach, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSize
      • Methods inherited from class java.util.AbstractList

        equals, hashCode
      • Methods inherited from class java.util.AbstractCollection

        containsAll
      • Methods inherited from class java.lang.Object

        finalize, getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.Collection

        parallelStream, stream
      • Methods inherited from interface java.util.List

        containsAll, equals, hashCode
    • Field Detail

      • dataItems

        private final java.util.List<java.lang.Object> dataItems
        List of output targets like Table or UserVariable
    • Constructor Detail

      • ReturningClause

        public ReturningClause​(ReturningClause.Keyword keyword,
                               java.util.List<SelectItem<?>> selectItems,
                               java.util.List<java.lang.Object> dataItems)
      • ReturningClause

        public ReturningClause​(java.lang.String keyword,
                               java.util.List<SelectItem<?>> selectItems,
                               java.util.List<java.lang.Object> dataItems)
      • ReturningClause

        public ReturningClause​(java.lang.String keyword,
                               java.util.List<SelectItem<?>> selectItems)
    • Method Detail

      • getDataItems

        public java.util.List<?> getDataItems()
      • appendTo

        public java.lang.StringBuilder appendTo​(java.lang.StringBuilder builder)
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.util.AbstractCollection<SelectItem<?>>