Package org.hl7.fhir.dstu2.model
Enum ContactPoint.ContactPointSystem
- java.lang.Object
-
- java.lang.Enum<ContactPoint.ContactPointSystem>
-
- org.hl7.fhir.dstu2.model.ContactPoint.ContactPointSystem
-
- All Implemented Interfaces:
Serializable,Comparable<ContactPoint.ContactPointSystem>
- Enclosing class:
- ContactPoint
public static enum ContactPoint.ContactPointSystem extends Enum<ContactPoint.ContactPointSystem>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EMAILThe value is an email address.FAXThe value is a fax machine.NULLadded to help the parsersOTHERA contact that is not a phone, fax, or email address.PAGERThe value is a pager number.PHONEThe value is a telephone number used for voice calls.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ContactPoint.ContactPointSystemfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static ContactPoint.ContactPointSystemvalueOf(String name)Returns the enum constant of this type with the specified name.static ContactPoint.ContactPointSystem[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PHONE
public static final ContactPoint.ContactPointSystem PHONE
The value is a telephone number used for voice calls. Use of full international numbers starting with + is recommended to enable automatic dialing support but not required.
-
FAX
public static final ContactPoint.ContactPointSystem FAX
The value is a fax machine. Use of full international numbers starting with + is recommended to enable automatic dialing support but not required.
-
EMAIL
public static final ContactPoint.ContactPointSystem EMAIL
The value is an email address.
-
PAGER
public static final ContactPoint.ContactPointSystem PAGER
The value is a pager number. These may be local pager numbers that are only usable on a particular pager system.
-
OTHER
public static final ContactPoint.ContactPointSystem OTHER
A contact that is not a phone, fax, or email address. The format of the value SHOULD be a URL. This is intended for various personal contacts including blogs, Twitter, Facebook, etc. Do not use for email addresses. If this is not a URL, then it will require human interpretation.
-
NULL
public static final ContactPoint.ContactPointSystem NULL
added to help the parsers
-
-
Method Detail
-
values
public static ContactPoint.ContactPointSystem[] 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 (ContactPoint.ContactPointSystem c : ContactPoint.ContactPointSystem.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ContactPoint.ContactPointSystem 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
-
fromCode
public static ContactPoint.ContactPointSystem fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-