Package com.ibm.fhir.model.type.code
Enum ActionRelationshipType.ValueSet
- java.lang.Object
-
- java.lang.Enum<ActionRelationshipType.ValueSet>
-
- com.ibm.fhir.model.type.code.ActionRelationshipType.ValueSet
-
- All Implemented Interfaces:
Serializable,Comparable<ActionRelationshipType.ValueSet>
- Enclosing class:
- ActionRelationshipType
public static enum ActionRelationshipType.ValueSet extends Enum<ActionRelationshipType.ValueSet>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AFTERAfterAFTER_ENDAfter EndAFTER_STARTAfter StartBEFOREBeforeBEFORE_ENDBefore EndBEFORE_STARTBefore StartCONCURRENTConcurrentCONCURRENT_WITH_ENDConcurrent With EndCONCURRENT_WITH_STARTConcurrent With Start
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ActionRelationshipType.ValueSetfrom(String value)Factory method for creating ActionRelationshipType.ValueSet values from a passed string value.Stringvalue()static ActionRelationshipType.ValueSetvalueOf(String name)Returns the enum constant of this type with the specified name.static ActionRelationshipType.ValueSet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BEFORE_START
public static final ActionRelationshipType.ValueSet BEFORE_START
Before StartThe action must be performed before the start of the related action.
-
BEFORE
public static final ActionRelationshipType.ValueSet BEFORE
BeforeThe action must be performed before the related action.
-
BEFORE_END
public static final ActionRelationshipType.ValueSet BEFORE_END
Before EndThe action must be performed before the end of the related action.
-
CONCURRENT_WITH_START
public static final ActionRelationshipType.ValueSet CONCURRENT_WITH_START
Concurrent With StartThe action must be performed concurrent with the start of the related action.
-
CONCURRENT
public static final ActionRelationshipType.ValueSet CONCURRENT
ConcurrentThe action must be performed concurrent with the related action.
-
CONCURRENT_WITH_END
public static final ActionRelationshipType.ValueSet CONCURRENT_WITH_END
Concurrent With EndThe action must be performed concurrent with the end of the related action.
-
AFTER_START
public static final ActionRelationshipType.ValueSet AFTER_START
After StartThe action must be performed after the start of the related action.
-
AFTER
public static final ActionRelationshipType.ValueSet AFTER
AfterThe action must be performed after the related action.
-
AFTER_END
public static final ActionRelationshipType.ValueSet AFTER_END
After EndThe action must be performed after the end of the related action.
-
-
Method Detail
-
values
public static ActionRelationshipType.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 (ActionRelationshipType.ValueSet c : ActionRelationshipType.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 ActionRelationshipType.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 ActionRelationshipType.ValueSet from(String value)
Factory method for creating ActionRelationshipType.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
-
-