
Package ca.uhn.fhir.model.api
Enum TemporalPrecisionEnum
- java.lang.Object
-
- java.lang.Enum<TemporalPrecisionEnum>
-
- ca.uhn.fhir.model.api.TemporalPrecisionEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<TemporalPrecisionEnum>
public enum TemporalPrecisionEnum extends Enum<TemporalPrecisionEnum>
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Date
add(Date theInput, int theAmount)
int
getCalendarConstant()
int
stringLength()
Given the standard string representation - YYYY-DD-MMTHH:NN:SS.SSS - how long is the string for the stated precision?static TemporalPrecisionEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static TemporalPrecisionEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
YEAR
public static final TemporalPrecisionEnum YEAR
-
MONTH
public static final TemporalPrecisionEnum MONTH
-
DAY
public static final TemporalPrecisionEnum DAY
-
MINUTE
public static final TemporalPrecisionEnum MINUTE
-
SECOND
public static final TemporalPrecisionEnum SECOND
-
MILLI
public static final TemporalPrecisionEnum MILLI
-
-
Method Detail
-
values
public static TemporalPrecisionEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TemporalPrecisionEnum c : TemporalPrecisionEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TemporalPrecisionEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getCalendarConstant
public int getCalendarConstant()
-
stringLength
public int stringLength()
Given the standard string representation - YYYY-DD-MMTHH:NN:SS.SSS - how long is the string for the stated precision?
-
-