Package org.linuxforhealth.fhir.client
Enum FHIRParameters.ValuePrefix
- java.lang.Object
-
- java.lang.Enum<FHIRParameters.ValuePrefix>
-
- org.linuxforhealth.fhir.client.FHIRParameters.ValuePrefix
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FHIRParameters.ValuePrefix>
- Enclosing class:
- FHIRParameters
public static enum FHIRParameters.ValuePrefix extends java.lang.Enum<FHIRParameters.ValuePrefix>
The valid set of value prefixes that can be used when constructing the parameters for a search operation.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
text()
static FHIRParameters.ValuePrefix
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FHIRParameters.ValuePrefix[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQ
public static final FHIRParameters.ValuePrefix EQ
-
NE
public static final FHIRParameters.ValuePrefix NE
-
GT
public static final FHIRParameters.ValuePrefix GT
-
LT
public static final FHIRParameters.ValuePrefix LT
-
GE
public static final FHIRParameters.ValuePrefix GE
-
LE
public static final FHIRParameters.ValuePrefix LE
-
SA
public static final FHIRParameters.ValuePrefix SA
-
EB
public static final FHIRParameters.ValuePrefix EB
-
AP
public static final FHIRParameters.ValuePrefix AP
-
-
Method Detail
-
values
public static FHIRParameters.ValuePrefix[] 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 (FHIRParameters.ValuePrefix c : FHIRParameters.ValuePrefix.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FHIRParameters.ValuePrefix valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
text
public java.lang.String text()
-
-