Skip to content

Instantly share code, notes, and snippets.

@bobbyjam99-zz
Created June 21, 2016 16:28
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 bobbyjam99-zz/a6ef0d7acad5780b6ba05d4a37ad60b2 to your computer and use it in GitHub Desktop.
Save bobbyjam99-zz/a6ef0d7acad5780b6ba05d4a37ad60b2 to your computer and use it in GitHub Desktop.
Eclipse Collectionsを使って日付(01-31)のListを作成
ImmutableList<String> list = IntInterval.fromTo(1, 31)
.collect(new IntToObjectFunction<String>() {
public String valueOf(int i) {
return String.format("%02d", i);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment