Enum ContactPointSystem.ValueSet
- java.lang.Object
-
- java.lang.Enum<ContactPointSystem.ValueSet>
-
- com.ibm.fhir.model.type.code.ContactPointSystem.ValueSet
-
- All Implemented Interfaces:
Serializable,Comparable<ContactPointSystem.ValueSet>
- Enclosing class:
- ContactPointSystem
public static enum ContactPointSystem.ValueSet extends Enum<ContactPointSystem.ValueSet>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ContactPointSystem.ValueSetfrom(String value)Factory method for creating ContactPointSystem.ValueSet values from a passed string value.Stringvalue()static ContactPointSystem.ValueSetvalueOf(String name)Returns the enum constant of this type with the specified name.static ContactPointSystem.ValueSet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PHONE
public static final ContactPointSystem.ValueSet PHONE
PhoneThe 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 ContactPointSystem.ValueSet FAX
FaxThe 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 ContactPointSystem.ValueSet EMAIL
EmailThe value is an email address.
-
PAGER
public static final ContactPointSystem.ValueSet PAGER
PagerThe value is a pager number. These may be local pager numbers that are only usable on a particular pager system.
-
URL
public static final ContactPointSystem.ValueSet URL
URLA contact that is not a phone, fax, pager or email address and is expressed as a URL. This is intended for various institutional or personal contacts including web sites, blogs, Skype, Twitter, Facebook, etc. Do not use for email addresses.
-
SMS
public static final ContactPointSystem.ValueSet SMS
SMSA contact that can be used for sending an sms message (e.g. mobile phones, some landlines).
-
OTHER
public static final ContactPointSystem.ValueSet OTHER
OtherA contact that is not a phone, fax, page or email address and is not expressible as a URL. E.g. Internal mail address. This SHOULD NOT be used for contacts that are expressible as a URL (e.g. Skype, Twitter, Facebook, etc.) Extensions may be used to distinguish "other" contact types.
-
-
Method Detail
-
values
public static ContactPointSystem.ValueSet[] 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 (ContactPointSystem.ValueSet c : ContactPointSystem.ValueSet.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ContactPointSystem.ValueSet 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
-
value
public String value()
- Returns:
- The java.lang.String value of the code represented by this enum
-
from
public static ContactPointSystem.ValueSet from(String value)
Factory method for creating ContactPointSystem.ValueSet values from a passed string value.- Parameters:
value- A string that matches one of the allowed code values- Throws:
IllegalArgumentException- If the passed string cannot be parsed into an allowed code value
-
-