Enum ResearchSubjectStatus.ValueSet
- java.lang.Object
-
- java.lang.Enum<ResearchSubjectStatus.ValueSet>
-
- com.ibm.fhir.model.type.code.ResearchSubjectStatus.ValueSet
-
- All Implemented Interfaces:
Serializable,Comparable<ResearchSubjectStatus.ValueSet>
- Enclosing class:
- ResearchSubjectStatus
public static enum ResearchSubjectStatus.ValueSet extends Enum<ResearchSubjectStatus.ValueSet>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CANDIDATECandidateELIGIBLEEligibleFOLLOW_UPFollow-upINELIGIBLEIneligibleNOT_REGISTEREDNot RegisteredOFF_STUDYOff-studyON_STUDYOn-studyON_STUDY_INTERVENTIONOn-study-interventionON_STUDY_OBSERVATIONOn-study-observationPENDING_ON_STUDYPending on-studyPOTENTIAL_CANDIDATEPotential CandidateSCREENINGScreeningWITHDRAWNWithdrawn
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResearchSubjectStatus.ValueSetfrom(String value)Factory method for creating ResearchSubjectStatus.ValueSet values from a passed string value.Stringvalue()static ResearchSubjectStatus.ValueSetvalueOf(String name)Returns the enum constant of this type with the specified name.static ResearchSubjectStatus.ValueSet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CANDIDATE
public static final ResearchSubjectStatus.ValueSet CANDIDATE
CandidateAn identified person that can be considered for inclusion in a study.
-
ELIGIBLE
public static final ResearchSubjectStatus.ValueSet ELIGIBLE
EligibleA person that has met the eligibility criteria for inclusion in a study.
-
FOLLOW_UP
public static final ResearchSubjectStatus.ValueSet FOLLOW_UP
Follow-upA person is no longer receiving study intervention and/or being evaluated with tests and procedures according to the protocol, but they are being monitored on a protocol-prescribed schedule.
-
INELIGIBLE
public static final ResearchSubjectStatus.ValueSet INELIGIBLE
IneligibleA person who did not meet one or more criteria required for participation in a study is considered to have failed screening or
is ineligible for the study.
-
NOT_REGISTERED
public static final ResearchSubjectStatus.ValueSet NOT_REGISTERED
Not RegisteredA person for whom registration was not completed.
-
OFF_STUDY
public static final ResearchSubjectStatus.ValueSet OFF_STUDY
Off-studyA person that has ended their participation on a study either because their treatment/observation is complete or through not
responding, withdrawal, non-compliance and/or adverse event.
-
ON_STUDY
public static final ResearchSubjectStatus.ValueSet ON_STUDY
On-studyA person that is enrolled or registered on a study.
-
ON_STUDY_INTERVENTION
public static final ResearchSubjectStatus.ValueSet ON_STUDY_INTERVENTION
On-study-interventionThe person is receiving the treatment or participating in an activity (e.g. yoga, diet, etc.) that the study is evaluating.
-
ON_STUDY_OBSERVATION
public static final ResearchSubjectStatus.ValueSet ON_STUDY_OBSERVATION
On-study-observationThe subject is being evaluated via tests and assessments according to the study calendar, but is not receiving any intervention. Note that this state is study-dependent and might not exist in all studies. A synonym for this is "short- term follow-up".
-
PENDING_ON_STUDY
public static final ResearchSubjectStatus.ValueSet PENDING_ON_STUDY
Pending on-studyA person is pre-registered for a study.
-
POTENTIAL_CANDIDATE
public static final ResearchSubjectStatus.ValueSet POTENTIAL_CANDIDATE
Potential CandidateA person that is potentially eligible for participation in the study.
-
SCREENING
public static final ResearchSubjectStatus.ValueSet SCREENING
ScreeningA person who is being evaluated for eligibility for a study.
-
WITHDRAWN
public static final ResearchSubjectStatus.ValueSet WITHDRAWN
WithdrawnThe person has withdrawn their participation in the study before registration.
-
-
Method Detail
-
values
public static ResearchSubjectStatus.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 (ResearchSubjectStatus.ValueSet c : ResearchSubjectStatus.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 ResearchSubjectStatus.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 ResearchSubjectStatus.ValueSet from(String value)
Factory method for creating ResearchSubjectStatus.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
-
-