パッケージ | 説明 |
---|---|
java.time |
日付、時間、インスタント、デュレーションのメインAPI。
|
修飾子と型 | メソッドと説明 |
---|---|
YearMonth |
Year.atMonth(int month)
この年を月と組み合せて
YearMonth を作成します。 |
YearMonth |
Year.atMonth(Month month)
この年を月と組み合せて
YearMonth を作成します。 |
static YearMonth |
YearMonth.from(TemporalAccessor temporal)
時間的オブジェクトから
YearMonth のインスタンスを取得します。 |
YearMonth |
YearMonth.minus(long amountToSubtract, TemporalUnit unit)
指定された量を減算して、この年/月のコピーを返します。
|
YearMonth |
YearMonth.minus(TemporalAmount amountToSubtract)
指定された量を減算して、この年/月のコピーを返します。
|
YearMonth |
YearMonth.minusMonths(long monthsToSubtract)
指定された期間(月数)を減算して、この年-月のコピーを返します。
|
YearMonth |
YearMonth.minusYears(long yearsToSubtract)
指定された期間(年数)を減算して、この年-月のコピーを返します。
|
static YearMonth |
YearMonth.now()
デフォルトのタイムゾーンのシステム・クロックから現在の年-月を取得します。
|
static YearMonth |
YearMonth.now(Clock clock)
指定されたクロックから現在の年-月を取得します。
|
static YearMonth |
YearMonth.now(ZoneId zone)
指定されたタイムゾーンのシステム・クロックから現在の年-月を取得します。
|
static YearMonth |
YearMonth.of(int year, int month)
年および月から
YearMonth のインスタンスを取得します。 |
static YearMonth |
YearMonth.of(int year, Month month)
年および月から
YearMonth のインスタンスを取得します。 |
static YearMonth |
YearMonth.parse(CharSequence text)
2007-12 などのテキスト文字列からYearMonth のインスタンスを取得します。 |
static YearMonth |
YearMonth.parse(CharSequence text, DateTimeFormatter formatter)
特定のフォーマッタを使用して、テキスト文字列から
YearMonth のインスタンスを取得します。 |
YearMonth |
YearMonth.plus(long amountToAdd, TemporalUnit unit)
指定された量を加算して、この年/月のコピーを返します。
|
YearMonth |
YearMonth.plus(TemporalAmount amountToAdd)
指定された量を加算して、この年/月のコピーを返します。
|
YearMonth |
YearMonth.plusMonths(long monthsToAdd)
指定された期間(月数)を加算して、この年-月のコピーを返します。
|
YearMonth |
YearMonth.plusYears(long yearsToAdd)
指定された期間(年数)を加算して、この年-月のコピーを返します。
|
YearMonth |
YearMonth.with(TemporalAdjuster adjuster)
この年/月の調整済のコピーを返します。
|
YearMonth |
YearMonth.with(TemporalField field, long newValue)
指定されたフィールドを新しい値に設定して、この年/月のコピーを返します。
|
YearMonth |
YearMonth.withMonth(int month)
月を変更して、この
YearMonth のコピーを返します。 |
YearMonth |
YearMonth.withYear(int year)
年を変更して、この
YearMonth のコピーを返します。 |
修飾子と型 | メソッドと説明 |
---|---|
int |
YearMonth.compareTo(YearMonth other)
この年-月をもう一方の年-月と比較します。
|
boolean |
YearMonth.isAfter(YearMonth other)
この年-月が指定された年-月より後にあるか。
|
boolean |
YearMonth.isBefore(YearMonth other)
この年-月が指定された年-月より前にあるか。
|
バグまたは機能を送信
詳細なAPIリファレンスおよび開発者ドキュメントについては、Java SEのドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright© 1993, 2014, Oracle and/or its affiliates. All rights reserved.