Package ca.uhn.fhir.context
Enum BaseRuntimeElementDefinition.ChildTypeEnum
- java.lang.Object
-
- java.lang.Enum<BaseRuntimeElementDefinition.ChildTypeEnum>
-
- ca.uhn.fhir.context.BaseRuntimeElementDefinition.ChildTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<BaseRuntimeElementDefinition.ChildTypeEnum>
- Enclosing class:
- BaseRuntimeElementDefinition<T extends IBase>
public static enum BaseRuntimeElementDefinition.ChildTypeEnum extends Enum<BaseRuntimeElementDefinition.ChildTypeEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPOSITE_DATATYPECONTAINED_RESOURCE_LISTHL7.org structure style.CONTAINED_RESOURCESHAPI structure style.EXTENSION_DECLAREDID_DATATYPEPRIMITIVE_DATATYPEPRIMITIVE_XHTMLHAPI style.PRIMITIVE_XHTML_HL7ORGHL7.org style.RESOURCERESOURCE_BLOCKUNDECL_EXT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BaseRuntimeElementDefinition.ChildTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static BaseRuntimeElementDefinition.ChildTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMPOSITE_DATATYPE
public static final BaseRuntimeElementDefinition.ChildTypeEnum COMPOSITE_DATATYPE
-
CONTAINED_RESOURCE_LIST
public static final BaseRuntimeElementDefinition.ChildTypeEnum CONTAINED_RESOURCE_LIST
HL7.org structure style.
-
CONTAINED_RESOURCES
public static final BaseRuntimeElementDefinition.ChildTypeEnum CONTAINED_RESOURCES
HAPI structure style.
-
EXTENSION_DECLARED
public static final BaseRuntimeElementDefinition.ChildTypeEnum EXTENSION_DECLARED
-
ID_DATATYPE
public static final BaseRuntimeElementDefinition.ChildTypeEnum ID_DATATYPE
-
PRIMITIVE_DATATYPE
public static final BaseRuntimeElementDefinition.ChildTypeEnum PRIMITIVE_DATATYPE
-
PRIMITIVE_XHTML
public static final BaseRuntimeElementDefinition.ChildTypeEnum PRIMITIVE_XHTML
HAPI style.
-
PRIMITIVE_XHTML_HL7ORG
public static final BaseRuntimeElementDefinition.ChildTypeEnum PRIMITIVE_XHTML_HL7ORG
HL7.org style.
-
RESOURCE
public static final BaseRuntimeElementDefinition.ChildTypeEnum RESOURCE
-
RESOURCE_BLOCK
public static final BaseRuntimeElementDefinition.ChildTypeEnum RESOURCE_BLOCK
-
UNDECL_EXT
public static final BaseRuntimeElementDefinition.ChildTypeEnum UNDECL_EXT
-
-
Method Detail
-
values
public static BaseRuntimeElementDefinition.ChildTypeEnum[] 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 (BaseRuntimeElementDefinition.ChildTypeEnum c : BaseRuntimeElementDefinition.ChildTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BaseRuntimeElementDefinition.ChildTypeEnum 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
-
-