Here you can find the source of isFirstPage(List> rawPages)
private static boolean isFirstPage(List<String> pageLines, List<List<String>> rawPages)
//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 }