Class ForwardingListPage<T>

  • All Implemented Interfaces:
    Iterable<T>, Collection<T>, List<T>, ListPage<T>

    public final class ForwardingListPage<T>
    extends com.google.common.collect.ForwardingList<T>
    implements ListPage<T>
    An immutable list that includes a token, if there is another page available.
    • Method Detail

      • create

        public static <T> ListPage<T> create​(List<T> items,
                                             String nextPageToken)
      • delegate

        protected List<T> delegate()
        Specified by:
        delegate in class com.google.common.collect.ForwardingList<T>