DateTime
withの時間数を確認する組み込みの方法DateTimeZone
はありますか?
私は小さなユーティリティ クラスを作成しましたが、組み込みメソッドを使用したいと考えています。
public class Dst {
public static long dayHours(DateTime instant) {
Period day = new Period(0, 0, 0, 1, 0, 0, 0, 0);
return new Duration(instant, instant.plus(day)).getStandardHours();
}
public static boolean hasClockChange(DateTime instant) {
return 24l != Dst.dayHours(instant);
}
}