public static class Partial.Property extends AbstractPartialFieldProperty implements Serializable
Partial
.
This class binds a Partial
to a DateTimeField
.
Modifier and Type | Method and Description |
---|---|
Partial |
addToCopy(int valueToAdd)
Adds to the value of this field in a copy of this Partial.
|
Partial |
addWrapFieldToCopy(int valueToAdd)
Adds to the value of this field in a copy of this Partial wrapping
within this field if the maximum value is reached.
|
int |
get()
Gets the value of this field.
|
DateTimeField |
getField()
Gets the field that this property uses.
|
Partial |
getPartial()
Gets the partial that this property belongs to.
|
protected ReadablePartial |
getReadablePartial()
Gets the partial that this property belongs to.
|
Partial |
setCopy(int value)
Sets this field in a copy of the Partial.
|
Partial |
setCopy(String text)
Sets this field in a copy of the Partial to a parsed text value.
|
Partial |
setCopy(String text,
Locale locale)
Sets this field in a copy of the Partial to a parsed text value.
|
Partial |
withMaximumValue()
Returns a new Partial with this field set to the maximum value
for this field.
|
Partial |
withMinimumValue()
Returns a new Partial with this field set to the minimum value
for this field.
|
compareTo, compareTo, equals, getAsShortText, getAsShortText, getAsString, getAsText, getAsText, getDurationField, getFieldType, getMaximumShortTextLength, getMaximumTextLength, getMaximumValue, getMaximumValueOverall, getMinimumValue, getMinimumValueOverall, getName, getRangeDurationField, hashCode, toString
public DateTimeField getField()
getField
in class AbstractPartialFieldProperty
protected ReadablePartial getReadablePartial()
getReadablePartial
in class AbstractPartialFieldProperty
public Partial getPartial()
public int get()
get
in class AbstractPartialFieldProperty
public Partial addToCopy(int valueToAdd)
The value will be added to this field. If the value is too large to be added solely to this field then it will affect larger fields. Smaller fields are unaffected.
If the result would be too large, beyond the maximum year, then an IllegalArgumentException is thrown.
The Partial attached to this property is unchanged by this call. Instead, a new instance is returned.
valueToAdd
- the value to add to the field in the copyIllegalArgumentException
- if the value isn't validpublic Partial addWrapFieldToCopy(int valueToAdd)
The value will be added to this field. If the value is too large to be added solely to this field then it wraps within this field. Other fields are unaffected.
For example,
2004-12-20
addWrapField one month returns 2004-01-20
.
The Partial attached to this property is unchanged by this call. Instead, a new instance is returned.
valueToAdd
- the value to add to the field in the copyIllegalArgumentException
- if the value isn't validpublic Partial setCopy(int value)
The Partial attached to this property is unchanged by this call. Instead, a new instance is returned.
value
- the value to set the field in the copy toIllegalArgumentException
- if the value isn't validpublic Partial setCopy(String text, Locale locale)
The Partial attached to this property is unchanged by this call. Instead, a new instance is returned.
text
- the text value to setlocale
- optional locale to use for selecting a text symbolIllegalArgumentException
- if the text value isn't validpublic Partial setCopy(String text)
The Partial attached to this property is unchanged by this call. Instead, a new instance is returned.
text
- the text value to setIllegalArgumentException
- if the text value isn't validpublic Partial withMaximumValue()
The Partial attached to this property is unchanged by this call.
public Partial withMinimumValue()
The Partial attached to this property is unchanged by this call.
Copyright © 2002–2022 Joda.org. All rights reserved.