Package ca.uhn.fhir.model.dstu2.valueset
Enum AssertionResponseTypesEnum
java.lang.Object
java.lang.Enum<AssertionResponseTypesEnum>
ca.uhn.fhir.model.dstu2.valueset.AssertionResponseTypesEnum
- All Implemented Interfaces:
Serializable
,Comparable<AssertionResponseTypesEnum>
-
Enum Constant Summary
Enum ConstantDescriptionDisplay: bad
Code Value: bad Response code is 400.Display: conflict
Code Value: conflict Response code is 409.Display: created
Code Value: created Response code is 201.Display: forbidden
Code Value: forbidden Response code is 403.Display: gone
Code Value: gone Response code is 410.Display: methodNotAllowed
Code Value: methodNotAllowed Response code is 405.Display: noContent
Code Value: noContent Response code is 204.Display: notFound
Code Value: notFound Response code is 404.Display: notModified
Code Value: notModified Response code is 304.Display: okay
Code Value: okay Response code is 200.Display: preconditionFailed
Code Value: preconditionFailed Response code is 412.Display: unprocessable
Code Value: unprocessable Response code is 422. -
Field Summary
Modifier and TypeFieldDescriptionstatic final ca.uhn.fhir.model.api.IValueSetEnumBinder
<AssertionResponseTypesEnum> Converts codes to their respective enumerated valuesstatic final String
Identifier for this Value Set:static final String
Name for this Value Set: AssertionResponseTypes -
Method Summary
Modifier and TypeMethodDescriptionstatic AssertionResponseTypesEnum
Returns the enumerated value associated with this codegetCode()
Returns the code associated with this enumerated valueReturns the code system associated with this enumerated valuestatic AssertionResponseTypesEnum
Returns the enum constant of this type with the specified name.static AssertionResponseTypesEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
OKAY
Display: okay
Code Value: okay Response code is 200. -
CREATED
Display: created
Code Value: created Response code is 201. -
NOCONTENT
Display: noContent
Code Value: noContent Response code is 204. -
NOTMODIFIED
Display: notModified
Code Value: notModified Response code is 304. -
BAD
Display: bad
Code Value: bad Response code is 400. -
FORBIDDEN
Display: forbidden
Code Value: forbidden Response code is 403. -
NOTFOUND
Display: notFound
Code Value: notFound Response code is 404. -
METHODNOTALLOWED
Display: methodNotAllowed
Code Value: methodNotAllowed Response code is 405. -
CONFLICT
Display: conflict
Code Value: conflict Response code is 409. -
GONE
Display: gone
Code Value: gone Response code is 410. -
PRECONDITIONFAILED
Display: preconditionFailed
Code Value: preconditionFailed Response code is 412. -
UNPROCESSABLE
Display: unprocessable
Code Value: unprocessable Response code is 422.
-
-
Field Details
-
VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
-
VALUESET_NAME
Name for this Value Set: AssertionResponseTypes- See Also:
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<AssertionResponseTypesEnum> VALUESET_BINDERConverts codes to their respective enumerated values
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getCode
Returns the code associated with this enumerated value -
getSystem
Returns the code system associated with this enumerated value -
forCode
Returns the enumerated value associated with this code
-