クラス
java.time.YearMonthの使用
-
java.timeでのYearMonthの使用
YearMonthを返すjava.timeのメソッド 修飾子と型 メソッド 説明 YearMonthYear. atMonth(int month)この年を月と組み合せてYearMonthを作成します。YearMonthYear. atMonth(Month month)この年を月と組み合せてYearMonthを作成します。static YearMonthYearMonth. from(TemporalAccessor temporal)時間的オブジェクトからYearMonthのインスタンスを取得します。YearMonthYearMonth. minus(long amountToSubtract, TemporalUnit unit)指定された量を減算した、この年-月のコピーを返します。YearMonthYearMonth. minus(TemporalAmount amountToSubtract)指定された量を減算した、この年-月のコピーを返します。YearMonthYearMonth. minusMonths(long monthsToSubtract)指定された月数を減算した、このYearMonthのコピーを返します。YearMonthYearMonth. minusYears(long yearsToSubtract)指定された年数を減算した、このYearMonthのコピーを返します。static YearMonthYearMonth. now()デフォルトのタイムゾーンのシステム・クロックから現在の年-月を取得します。static YearMonthYearMonth. now(Clock clock)指定されたクロックから現在の年-月を取得します。static YearMonthYearMonth. now(ZoneId zone)指定されたタイムゾーンのシステム・クロックから現在の年-月を取得します。static YearMonthYearMonth. of(int year, int month)年および月からYearMonthのインスタンスを取得します。static YearMonthYearMonth. of(int year, Month month)年および月からYearMonthのインスタンスを取得します。static YearMonthYearMonth. parse(CharSequence text)2007-12などのテキスト文字列からYearMonthのインスタンスを取得します。static YearMonthYearMonth. parse(CharSequence text, DateTimeFormatter formatter)特定のフォーマッタを使用して、テキスト文字列からYearMonthのインスタンスを取得します。YearMonthYearMonth. plus(long amountToAdd, TemporalUnit unit)この年月のコピーに指定された時間を追加したものを返します。YearMonthYearMonth. plus(TemporalAmount amountToAdd)この年月のコピーに指定された時間を追加したものを返します。YearMonthYearMonth. plusMonths(long monthsToAdd)指定された月数を加算した、このYearMonthのコピーを返します。YearMonthYearMonth. plusYears(long yearsToAdd)指定された年数を加算した、このYearMonthのコピーを返します。YearMonthYearMonth. with(TemporalAdjuster adjuster)この年と月の調整済のコピーを返します。YearMonthYearMonth. with(TemporalField field, long newValue)指定されたフィールドを新しい値に設定して、この年と月のコピーを返します。YearMonthYearMonth. withMonth(int month)月を変更して、このYearMonthのコピーを返します。YearMonthYearMonth. withYear(int year)年を変更して、このYearMonthのコピーを返します。