
Package org.hl7.fhir.dstu3.model
Enum ExpressionNode.CollectionStatus
- java.lang.Object
-
- java.lang.Enum<ExpressionNode.CollectionStatus>
-
- org.hl7.fhir.dstu3.model.ExpressionNode.CollectionStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<ExpressionNode.CollectionStatus>
- Enclosing class:
- ExpressionNode
public static enum ExpressionNode.CollectionStatus extends Enum<ExpressionNode.CollectionStatus>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExpressionNode.CollectionStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static ExpressionNode.CollectionStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SINGLETON
public static final ExpressionNode.CollectionStatus SINGLETON
-
ORDERED
public static final ExpressionNode.CollectionStatus ORDERED
-
UNORDERED
public static final ExpressionNode.CollectionStatus UNORDERED
-
-
Method Detail
-
values
public static ExpressionNode.CollectionStatus[] 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 (ExpressionNode.CollectionStatus c : ExpressionNode.CollectionStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExpressionNode.CollectionStatus 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
-
-