Created
July 14, 2016 18:39
-
-
Save cosbor11/65f856804099590f5b040b4195015081 to your computer and use it in GitHub Desktop.
Get and print out all of the entites in the LazyQueryCollection
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (int i = 0; i < allPlayers.size(); i++) | |
{ | |
final Player player = allPlayers.get(i); // retreives the Player when invoked | |
System.out.println(player.getFirstName() + " " + player.getLastName()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment