public enum DurationUnit extends java.lang.Enum<DurationUnit>
Duration
object.
This class is designed to handle durations with a single non-zero time unit.
Providing a duration with multiple non-zero units will result in an
InvalidDurationException
.
Note: Weeks are handled as a special case of days (7 days).
Enum Constant and Description |
---|
DAY
Represents the "day" time unit.
|
HOUR
Represents the "hour" time unit.
|
MINUTE
Represents the "minute" time unit.
|
MONTH
Represents the "month" time unit.
|
SECOND
Represents the "second" time unit.
|
WEEK
Represents the "week" time unit.
|
YEAR
Represents the "year" time unit.
|
Modifier and Type | Method and Description |
---|---|
static java.lang.Integer |
extractCount(javax.xml.datatype.Duration duration)
Extracts the count/value from the given
Duration assuming it contains only
one "unit part" with a count ! |
static DurationUnit |
fromDesignator(java.lang.String designator)
Returns the
DurationUnit corresponding to the given designator. |
static DurationUnit |
fromDuration(javax.xml.datatype.Duration duration)
Determines the
DurationUnit that corresponds to the single non-zero "unit part" in the given Duration . |
static DurationUnit |
fromDuration(javax.xml.datatype.Duration duration,
DurationUnit defaultUnit)
Determines the
DurationUnit that corresponds to the single non-zero "unit part" in the given Duration . |
static DurationUnit |
fromIndex(java.lang.Integer index)
Returns the
DurationUnit corresponding to the given index. |
javax.xml.datatype.Duration |
getDuration(int count)
Creates a new
Duration with the count/value for this DurationUnit set to the given value. |
int |
getIndex() |
java.lang.String |
toString() |
static DurationUnit |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DurationUnit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DurationUnit YEAR
public static final DurationUnit MONTH
public static final DurationUnit WEEK
public static final DurationUnit DAY
public static final DurationUnit HOUR
public static final DurationUnit MINUTE
public static final DurationUnit SECOND
public static DurationUnit[] values()
for (DurationUnit c : DurationUnit.values()) System.out.println(c);
public static DurationUnit 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.lang.String toString()
toString
in class java.lang.Enum<DurationUnit>
public int getIndex()
public static java.lang.Integer extractCount(javax.xml.datatype.Duration duration)
Duration
assuming it contains only
one "unit part" with a count != 0.duration
- The Duration
to extract the count from.InvalidDurationException
- If more than one "unit part" has a count/value != 0.public static DurationUnit fromDuration(javax.xml.datatype.Duration duration)
DurationUnit
that corresponds to the single non-zero "unit part" in the given Duration
.duration
- The Duration
to determine the unit for.DurationUnit
, or DAY
if no match is found or the duration is null.InvalidDurationException
- If more than one "unit part" has a count/value != 0.public static DurationUnit fromDuration(javax.xml.datatype.Duration duration, DurationUnit defaultUnit)
DurationUnit
that corresponds to the single non-zero "unit part" in the given Duration
.duration
- The Duration
to determine the unit for.defaultUnit
- The default unit to return if no match is found or the duration is null. Defaults to DAY
if passed as null.DurationUnit
, or defaultUnit
if no match is found or the duration is null.InvalidDurationException
- If more than one "unit part" has a count/value != 0.public static DurationUnit fromDesignator(java.lang.String designator)
DurationUnit
corresponding to the given designator.designator
- the designatorDurationUnit
corresponding to the given designatorjava.lang.IllegalArgumentException
- if the designator is invalidpublic static DurationUnit fromIndex(java.lang.Integer index)
DurationUnit
corresponding to the given index.index
- the indexDurationUnit
corresponding to the given indexjava.lang.IllegalArgumentException
- if the index is invalidpublic javax.xml.datatype.Duration getDuration(int count)
Duration
with the count/value for this DurationUnit
set to the given value.count
- The count/value to set for this unit.Duration
with the specified count for this unit.Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.