Package ca.uhn.fhir.model.primitive
Class IntegerDt
- java.lang.Object
-
- ca.uhn.fhir.model.api.BaseElement
-
- ca.uhn.fhir.model.api.BaseIdentifiableElement
-
- ca.uhn.fhir.model.api.BasePrimitive<Integer>
-
- ca.uhn.fhir.model.primitive.IntegerDt
-
- All Implemented Interfaces:
IDatatype,IElement,IIdentifiableElement,IPrimitiveDatatype<Integer>,ISupportsUndeclaredExtensions,Externalizable,Serializable,IBase,IBaseDatatype,IBaseIntegerDatatype,IPrimitiveType<Integer>
- Direct Known Subclasses:
PositiveIntDt,UnsignedIntDt
public class IntegerDt extends BasePrimitive<Integer> implements IBaseIntegerDatatype
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Stringencode(Integer theValue)Subclasses must override to convert a "coerced" value into an encoded one.protected Integerparse(String theValue)Subclasses must override to convert an encoded representation of this datatype into a "coerced" one-
Methods inherited from class ca.uhn.fhir.model.api.BasePrimitive
equals, getValue, getValueAsString, hashCode, hasValue, isEmpty, readExternal, setValue, setValueAsString, toString, updateStringValue, writeExternal
-
Methods inherited from class ca.uhn.fhir.model.api.BaseIdentifiableElement
getElementSpecificId, getId, setElementSpecificId, setId, setId
-
Methods inherited from class ca.uhn.fhir.model.api.BaseElement
addUndeclaredExtension, addUndeclaredExtension, addUndeclaredExtension, getAllUndeclaredExtensions, getFormatCommentsPost, getFormatCommentsPre, getUndeclaredExtensions, getUndeclaredExtensionsByUrl, getUndeclaredModifierExtensions, getUserData, hasFormatComment, isBaseEmpty, setUserData
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.hl7.fhir.instance.model.api.IBase
fhirType, getFormatCommentsPost, getFormatCommentsPre, getUserData, hasFormatComment, isEmpty, setUserData
-
Methods inherited from interface org.hl7.fhir.instance.model.api.IPrimitiveType
hasValue
-
-
-
-
Constructor Detail
-
IntegerDt
public IntegerDt()
Constructor
-
IntegerDt
public IntegerDt(int theInteger)
Constructor
-
IntegerDt
public IntegerDt(String theIntegerAsString)
Constructor- Parameters:
theIntegerAsString- A string representation of an integer- Throws:
DataFormatException- If the string is not a valid integer representation
-
-
Method Detail
-
parse
protected Integer parse(String theValue)
Description copied from class:BasePrimitiveSubclasses must override to convert an encoded representation of this datatype into a "coerced" one- Specified by:
parsein classBasePrimitive<Integer>- Parameters:
theValue- Will not be null- Returns:
- May return null if the value does not correspond to anything
-
encode
protected String encode(Integer theValue)
Description copied from class:BasePrimitiveSubclasses must override to convert a "coerced" value into an encoded one.- Specified by:
encodein classBasePrimitive<Integer>- Parameters:
theValue- Will not be null- Returns:
- May return null if the value does not correspond to anything
-
-