public class YearMonth
extends Object
GDK enhancements for YearMonth.
| Type Params | Return Type | Name and description |
|---|---|---|
|
public LocalDate |
leftShift(int dayOfMonth)Returns a LocalDate of this year/month and the given day of the month. |
|
public YearMonth |
minus(long months)Returns a YearMonth that is months months before this year/month. |
|
public YearMonth |
next()Returns a YearMonth that is the month after this year/month. |
|
public static YearMonth |
parse(YearMonth type, CharSequence text, String pattern)Parse text into a YearMonth using the provided pattern. |
|
public YearMonth |
plus(long months)Returns a YearMonth that is months months after this year/month. |
|
public YearMonth |
previous()Returns a YearMonth that is the month before this year/month. |
|
public Period |
rightShift(YearMonth other)Returns a Period of time between the first day of this year/month (inclusive) and the given YearMonth (exclusive). |
| Methods inherited from class | Name |
|---|---|
class Object |
addShutdownHook, any, any, asBoolean, asType, collect, collect, collect, dump, each, eachMatch, eachMatch, eachWithIndex, every, every, find, find, findAll, findAll, findIndexOf, findIndexOf, findIndexValues, findIndexValues, findLastIndexOf, findLastIndexOf, findResult, findResult, findResult, findResult, getAt, getMetaClass, getMetaPropertyValues, getProperties, grep, grep, hasProperty, identity, inject, inject, inspect, invokeMethod, is, isCase, isNotCase, iterator, metaClass, print, print, printf, printf, println, println, println, putAt, respondsTo, respondsTo, setMetaClass, sleep, sleep, split, sprintf, sprintf, stream, tap, toString, use, use, use, with, with, withCloseable, withCloseable, withMethodClosure, withStream, withStream, withTraits |
Returns a LocalDate of this year/month and the given day of the month.
dayOfMonth - a day of the month Returns a YearMonth that is months months before this year/month.
months - the number of months to subtractReturns a YearMonth that is the month after this year/month.
Parse text into a YearMonth using the provided pattern.
type - placeholder variable used by Groovy categories; ignored for default static methodstext - String to be parsed to create the date instancepattern - pattern used to parse the text Returns a YearMonth that is months months after this year/month.
months - the number of months to addReturns a YearMonth that is the month before this year/month.