Enum V3ParticipationMode
- java.lang.Object
-
- java.lang.Enum<V3ParticipationMode>
-
- org.hl7.fhir.r4.model.codesystems.V3ParticipationMode
-
- All Implemented Interfaces:
Serializable,Comparable<V3ParticipationMode>
public enum V3ParticipationMode extends Enum<V3ParticipationMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DICTATEParticipation by pre-recorded voice.ELECTRONICParticipation by non-human-languaged based electronic signalEMAILWRITParticipation by text or diagrams transmitted over an electronic mail system.FACEParticipation by voice communication where parties speak to each other directly.FAXWRITParticipation by text or diagrams printed on paper that have been transmitted over a fax deviceHANDWRITParticipation by text or diagrams printed on paper or other recording mediumMAILWRITParticipation by text or diagrams printed on paper transmitted physically (e.g.NULLadded to help the parsersONLINEWRITParticipation by text or diagrams submitted by computer network, e.g.PHONEParticipation by voice communication where the voices of the communicating parties are transported over an electronic mediumPHYSICALParticipation by direct action where subject and actor are in the same location.REMOTEParticipation by direct action where subject and actor are in separate locations, and the actions of the actor are transmitted by electronic or mechanical means.TYPEWRITParticipation by text or diagrams printed on paper or other recording medium where the recording was performed using a typewriter, typesetter, computer or similar mechanism.VERBALParticipation by voice communicationVIDEOCONFParticipation by voice and visual communication where the voices and images of the communicating parties are transported over an electronic mediumWRITTENParticipation by human language recorded on a physical material
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static V3ParticipationModefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static V3ParticipationModevalueOf(String name)Returns the enum constant of this type with the specified name.static V3ParticipationMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ELECTRONIC
public static final V3ParticipationMode ELECTRONIC
Participation by non-human-languaged based electronic signal
-
PHYSICAL
public static final V3ParticipationMode PHYSICAL
Participation by direct action where subject and actor are in the same location. (The participation involves more than communication.)
-
REMOTE
public static final V3ParticipationMode REMOTE
Participation by direct action where subject and actor are in separate locations, and the actions of the actor are transmitted by electronic or mechanical means. (The participation involves more than communication.)
-
VERBAL
public static final V3ParticipationMode VERBAL
Participation by voice communication
-
DICTATE
public static final V3ParticipationMode DICTATE
Participation by pre-recorded voice. Communication is limited to one direction (from the recorder to recipient).
-
FACE
public static final V3ParticipationMode FACE
Participation by voice communication where parties speak to each other directly.
-
PHONE
public static final V3ParticipationMode PHONE
Participation by voice communication where the voices of the communicating parties are transported over an electronic medium
-
VIDEOCONF
public static final V3ParticipationMode VIDEOCONF
Participation by voice and visual communication where the voices and images of the communicating parties are transported over an electronic medium
-
WRITTEN
public static final V3ParticipationMode WRITTEN
Participation by human language recorded on a physical material
-
FAXWRIT
public static final V3ParticipationMode FAXWRIT
Participation by text or diagrams printed on paper that have been transmitted over a fax device
-
HANDWRIT
public static final V3ParticipationMode HANDWRIT
Participation by text or diagrams printed on paper or other recording medium
-
MAILWRIT
public static final V3ParticipationMode MAILWRIT
Participation by text or diagrams printed on paper transmitted physically (e.g. by courier service, postal service).
-
ONLINEWRIT
public static final V3ParticipationMode ONLINEWRIT
Participation by text or diagrams submitted by computer network, e.g. online survey.
-
EMAILWRIT
public static final V3ParticipationMode EMAILWRIT
Participation by text or diagrams transmitted over an electronic mail system.
-
TYPEWRIT
public static final V3ParticipationMode TYPEWRIT
Participation by text or diagrams printed on paper or other recording medium where the recording was performed using a typewriter, typesetter, computer or similar mechanism.
-
NULL
public static final V3ParticipationMode NULL
added to help the parsers
-
-
Method Detail
-
values
public static V3ParticipationMode[] 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 (V3ParticipationMode c : V3ParticipationMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static V3ParticipationMode 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 V3ParticipationMode fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-