Skip to content

Instantly share code, notes, and snippets.

@artem-zinnatullin
Created August 28, 2014 13:59
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 artem-zinnatullin/41936326c2254cd59ea6 to your computer and use it in GitHub Desktop.
Save artem-zinnatullin/41936326c2254cd59ea6 to your computer and use it in GitHub Desktop.
Short write of Collection creation and filling
Collection<String> stringsCollection = new ArrayList<String>() {
{
add("1");
add("2");
add("3");
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment