Package com.ibm.fhir.search
Enum SearchConstants.Type
- java.lang.Object
-
- java.lang.Enum<SearchConstants.Type>
-
- com.ibm.fhir.search.SearchConstants.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<SearchConstants.Type>
- Enclosing class:
- SearchConstants
public static enum SearchConstants.Type extends Enum<SearchConstants.Type>
Types
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SearchConstants.Type
fromValue(String value)
String
value()
static SearchConstants.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static SearchConstants.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NUMBER
public static final SearchConstants.Type NUMBER
-
DATE
public static final SearchConstants.Type DATE
-
STRING
public static final SearchConstants.Type STRING
-
TOKEN
public static final SearchConstants.Type TOKEN
-
REFERENCE
public static final SearchConstants.Type REFERENCE
-
COMPOSITE
public static final SearchConstants.Type COMPOSITE
-
QUANTITY
public static final SearchConstants.Type QUANTITY
-
URI
public static final SearchConstants.Type URI
-
SPECIAL
public static final SearchConstants.Type SPECIAL
-
-
Method Detail
-
values
public static SearchConstants.Type[] 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 (SearchConstants.Type c : SearchConstants.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SearchConstants.Type 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()
-
fromValue
public static SearchConstants.Type fromValue(String value)
-
-