public final class UnsupportedDurationField extends DurationField implements Serializable
UnsupportedDurationField is thread-safe and immutable.
Modifier and Type | Method and Description |
---|---|
long |
add(long instant,
int value)
Always throws UnsupportedOperationException
|
long |
add(long instant,
long value)
Always throws UnsupportedOperationException
|
int |
compareTo(DurationField durationField)
Always returns zero, indicating that sort order is not relevant.
|
boolean |
equals(Object obj)
Compares this duration field to another.
|
int |
getDifference(long minuendInstant,
long subtrahendInstant)
Always throws UnsupportedOperationException
|
long |
getDifferenceAsLong(long minuendInstant,
long subtrahendInstant)
Always throws UnsupportedOperationException
|
static UnsupportedDurationField |
getInstance(DurationFieldType type)
Gets an instance of UnsupportedDurationField for a specific named field.
|
long |
getMillis(int value)
Always throws UnsupportedOperationException
|
long |
getMillis(int value,
long instant)
Always throws UnsupportedOperationException as this is not supported
|
long |
getMillis(long value)
Always throws UnsupportedOperationException
|
long |
getMillis(long value,
long instant)
Always throws UnsupportedOperationException
|
String |
getName()
Get the name of the field.
|
DurationFieldType |
getType()
Get the type of the field.
|
long |
getUnitMillis()
Always returns zero.
|
int |
getValue(long duration)
Always throws UnsupportedOperationException
|
int |
getValue(long duration,
long instant)
Always throws UnsupportedOperationException
|
long |
getValueAsLong(long duration)
Always throws UnsupportedOperationException
|
long |
getValueAsLong(long duration,
long instant)
Always throws UnsupportedOperationException
|
int |
hashCode()
Gets a suitable hashcode.
|
boolean |
isPrecise()
This field is precise.
|
boolean |
isSupported()
This field is not supported.
|
String |
toString()
Get a suitable debug string.
|
subtract, subtract
public static UnsupportedDurationField getInstance(DurationFieldType type)
type
- the type to obtainpublic final DurationFieldType getType()
DurationField
getType
in class DurationField
public String getName()
DurationField
By convention, names are plural.
getName
in class DurationField
public boolean isSupported()
isSupported
in class DurationField
public boolean isPrecise()
isPrecise
in class DurationField
DurationField.getUnitMillis()
public int getValue(long duration)
getValue
in class DurationField
duration
- the milliseconds to query, which may be negativeUnsupportedOperationException
- as this is not supportedpublic long getValueAsLong(long duration)
getValueAsLong
in class DurationField
duration
- the milliseconds to query, which may be negativeUnsupportedOperationException
- as this is not supportedpublic int getValue(long duration, long instant)
getValue
in class DurationField
duration
- the milliseconds to query, which may be negativeinstant
- the start instant to calculate relative toUnsupportedOperationException
- as this is not supportedpublic long getValueAsLong(long duration, long instant)
getValueAsLong
in class DurationField
duration
- the milliseconds to query, which may be negativeinstant
- the start instant to calculate relative toUnsupportedOperationException
- as this is not supportedpublic long getMillis(int value)
getMillis
in class DurationField
value
- the value of the field, which may be negativeUnsupportedOperationException
- as this is not supportedpublic long getMillis(long value)
getMillis
in class DurationField
value
- the value of the field, which may be negativeUnsupportedOperationException
- as this is not supportedpublic long getMillis(int value, long instant)
getMillis
in class DurationField
value
- the value of the field, which may be negativeinstant
- the instant to calculate relative toUnsupportedOperationException
- as this is not supportedpublic long getMillis(long value, long instant)
getMillis
in class DurationField
value
- the value of the field, which may be negativeinstant
- the instant to calculate relative toUnsupportedOperationException
- as this is not supportedpublic long add(long instant, int value)
add
in class DurationField
instant
- the milliseconds from 1970-01-01T00:00:00Z to add tovalue
- the value to add, in the units of the fieldUnsupportedOperationException
- as this is not supportedpublic long add(long instant, long value)
add
in class DurationField
instant
- the milliseconds from 1970-01-01T00:00:00Z to add tovalue
- the value to add, in the units of the fieldUnsupportedOperationException
- as this is not supportedpublic int getDifference(long minuendInstant, long subtrahendInstant)
getDifference
in class DurationField
minuendInstant
- the milliseconds from 1970-01-01T00:00:00Z to
subtract fromsubtrahendInstant
- the milliseconds from 1970-01-01T00:00:00Z to
subtract off the minuendUnsupportedOperationException
- as this is not supportedpublic long getDifferenceAsLong(long minuendInstant, long subtrahendInstant)
getDifferenceAsLong
in class DurationField
minuendInstant
- the milliseconds from 1970-01-01T00:00:00Z to
subtract fromsubtrahendInstant
- the milliseconds from 1970-01-01T00:00:00Z to
subtract off the minuendUnsupportedOperationException
- as this is not supportedpublic long getUnitMillis()
getUnitMillis
in class DurationField
DurationField.isPrecise()
public int compareTo(DurationField durationField)
compareTo
in interface Comparable<DurationField>
public boolean equals(Object obj)
public int hashCode()
public String toString()
toString
in class DurationField
Copyright © 2002–2024 Joda.org. All rights reserved.