Package org.hl7.fhir.r4.elementmodel
Enum Element.SpecialElement
- java.lang.Object
-
- java.lang.Enum<Element.SpecialElement>
-
- org.hl7.fhir.r4.elementmodel.Element.SpecialElement
-
- All Implemented Interfaces:
Serializable,Comparable<Element.SpecialElement>
- Enclosing class:
- Element
public static enum Element.SpecialElement extends Enum<Element.SpecialElement>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUNDLE_ENTRYBUNDLE_OUTCOMECONTAINEDPARAMETER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Element.SpecialElementfromProperty(Property property)static Element.SpecialElementvalueOf(String name)Returns the enum constant of this type with the specified name.static Element.SpecialElement[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTAINED
public static final Element.SpecialElement CONTAINED
-
BUNDLE_ENTRY
public static final Element.SpecialElement BUNDLE_ENTRY
-
BUNDLE_OUTCOME
public static final Element.SpecialElement BUNDLE_OUTCOME
-
PARAMETER
public static final Element.SpecialElement PARAMETER
-
-
Method Detail
-
values
public static Element.SpecialElement[] 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 (Element.SpecialElement c : Element.SpecialElement.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Element.SpecialElement 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
-
fromProperty
public static Element.SpecialElement fromProperty(Property property)
-
-