Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JodaTime に曜日 (Mon=1、Sun=7) を java.util 定数セット (Sun=1、Sat=7) に変換するユーティリティはありますか? それとも、本当に次のようなものを書く必要がありますか
return localDate.getDayOfWeek() % 7 + 1;
?