public enum PeriodUnit extends java.lang.Enum<PeriodUnit>
This enum defines a mapping between single-character representations and their corresponding
ChronoUnit
. This simplified approach is designed for easier use, especially for
non-programmers who may be involved in defining XML schemas for GDPR compliance, and avoids
the complexities of the ISO-8601 duration format.
Examples:
P10Y
, use: 10y
P5M
, use: 5M
P2W
, use: 2w
P1D
, use: 1d
In addition to representing time units, this enum provides methods for:
ChronoUnit
for a given period unit.PeriodUnit
from its character representation.Period
object from a period unit and a specified amount.Enum Constant and Description |
---|
DAYS
Represents days.
|
MONTHS
Represents months.
|
WEEKS
Represents weeks.
|
YEARS
Represents years.
|
Modifier and Type | Method and Description |
---|---|
static PeriodUnit |
fromUnitChar(char unitChar)
Returns the
PeriodUnit corresponding to the given unit character. |
java.time.temporal.ChronoUnit |
getChronoUnit()
Returns the
ChronoUnit associated with the period unit. |
java.time.Period |
toPeriod(int amount)
Creates a
Period object based on the period unit and the given amount. |
static PeriodUnit |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PeriodUnit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PeriodUnit YEARS
public static final PeriodUnit MONTHS
public static final PeriodUnit WEEKS
public static final PeriodUnit DAYS
public static PeriodUnit[] values()
for (PeriodUnit c : PeriodUnit.values()) System.out.println(c);
public static PeriodUnit valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.time.temporal.ChronoUnit getChronoUnit()
ChronoUnit
associated with the period unit.ChronoUnit
associated with the period unitpublic static PeriodUnit fromUnitChar(char unitChar)
PeriodUnit
corresponding to the given unit character.
The comparison is case-insensitive.unitChar
- the unit characterPeriodUnit
corresponding to the given unit characterjava.lang.IllegalArgumentException
- if the unit character is invalidpublic java.time.Period toPeriod(int amount)
Period
object based on the period unit and the given amount.amount
- the amount of timePeriod
objectjava.lang.IllegalStateException
- if the period unit is not supported for creating a PeriodCopyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.