Java List First Item isFirstPage(List pageLines, List> rawPages)

Here you can find the source of isFirstPage(List pageLines, List> rawPages)

Description

is First Page

License

BSD License

Declaration

private static boolean isFirstPage(List<String> pageLines, List<List<String>> rawPages) 

Method Source Code

//package com.java2s;
//License from project: BSD License 

import java.util.List;

public class Main {
    private static boolean isFirstPage(List<String> pageLines, List<List<String>> rawPages) {
        return rawPages.indexOf(pageLines) == 0;
    }//  w w w  . j  av a 2 s  .  c o  m
}

Related

  1. getPage(List all, int first, int pageSize)
  2. getStringFirstResult(List> llo, String reason)
  3. hasSameElement(List firstList, List secondList)
  4. isFirst(List list, V object)
  5. isFirstAnnotationOfMethod(List lines, int lineNumber)
  6. isInOrder(List src, Object first, Object second)
  7. limit(List list, Long firstResult, Long maxResults)
  8. listWith(Object aFirstObject)
  9. merge(List first, List second)