Skip to content

Instantly share code, notes, and snippets.

@cosbor11
Created July 14, 2016 15:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cosbor11/1bc79e6a78e62843b49db571a0989e59 to your computer and use it in GitHub Desktop.
Save cosbor11/1bc79e6a78e62843b49db571a0989e59 to your computer and use it in GitHub Desktop.
Print the first page results
System.out.println("\nPage 1:");
for (final Player player : page1)
{
System.out.println(player.getLastName() + ", " + player.getFirstName());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment