Skip to content

Instantly share code, notes, and snippets.

@tyfkda
Last active August 29, 2015 14:14
Show Gist options
  • Save tyfkda/b7f5e1cc5111a295d3ea to your computer and use it in GitHub Desktop.
Save tyfkda/b7f5e1cc5111a295d3ea to your computer and use it in GitHub Desktop.
Create immutable Map in Java
private static final Map<String, String> FOOBAR_MAP =
new ImmutableMap.Builder<String, String>()
.put("foo", "bar")
.build();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment