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>
public enum AssertionResponseTypesEnum extends Enum<AssertionResponseTypesEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BADDisplay: bad
Code Value: bad Response code is 400.CONFLICTDisplay: conflict
Code Value: conflict Response code is 409.CREATEDDisplay: created
Code Value: created Response code is 201.FORBIDDENDisplay: forbidden
Code Value: forbidden Response code is 403.GONEDisplay: gone
Code Value: gone Response code is 410.METHODNOTALLOWEDDisplay: methodNotAllowed
Code Value: methodNotAllowed Response code is 405.NOCONTENTDisplay: noContent
Code Value: noContent Response code is 204.NOTFOUNDDisplay: notFound
Code Value: notFound Response code is 404.NOTMODIFIEDDisplay: notModified
Code Value: notModified Response code is 304.OKAYDisplay: okay
Code Value: okay Response code is 200.PRECONDITIONFAILEDDisplay: preconditionFailed
Code Value: preconditionFailed Response code is 412.UNPROCESSABLEDisplay: unprocessable
Code Value: unprocessable Response code is 422.
-
Field Summary
Fields Modifier and Type Field Description static ca.uhn.fhir.model.api.IValueSetEnumBinder<AssertionResponseTypesEnum>VALUESET_BINDERConverts codes to their respective enumerated valuesstatic StringVALUESET_IDENTIFIERIdentifier for this Value Set:static StringVALUESET_NAMEName for this Value Set: AssertionResponseTypes
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AssertionResponseTypesEnumforCode(String theCode)Returns the enumerated value associated with this codeStringgetCode()Returns the code associated with this enumerated valueStringgetSystem()Returns the code system associated with this enumerated valuestatic AssertionResponseTypesEnumvalueOf(String name)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 Detail
-
OKAY
public static final AssertionResponseTypesEnum OKAY
Display: okay
Code Value: okay Response code is 200.
-
CREATED
public static final AssertionResponseTypesEnum CREATED
Display: created
Code Value: created Response code is 201.
-
NOCONTENT
public static final AssertionResponseTypesEnum NOCONTENT
Display: noContent
Code Value: noContent Response code is 204.
-
NOTMODIFIED
public static final AssertionResponseTypesEnum NOTMODIFIED
Display: notModified
Code Value: notModified Response code is 304.
-
BAD
public static final AssertionResponseTypesEnum BAD
Display: bad
Code Value: bad Response code is 400.
-
FORBIDDEN
public static final AssertionResponseTypesEnum FORBIDDEN
Display: forbidden
Code Value: forbidden Response code is 403.
-
NOTFOUND
public static final AssertionResponseTypesEnum NOTFOUND
Display: notFound
Code Value: notFound Response code is 404.
-
METHODNOTALLOWED
public static final AssertionResponseTypesEnum METHODNOTALLOWED
Display: methodNotAllowed
Code Value: methodNotAllowed Response code is 405.
-
CONFLICT
public static final AssertionResponseTypesEnum CONFLICT
Display: conflict
Code Value: conflict Response code is 409.
-
GONE
public static final AssertionResponseTypesEnum GONE
Display: gone
Code Value: gone Response code is 410.
-
PRECONDITIONFAILED
public static final AssertionResponseTypesEnum PRECONDITIONFAILED
Display: preconditionFailed
Code Value: preconditionFailed Response code is 412.
-
UNPROCESSABLE
public static final AssertionResponseTypesEnum UNPROCESSABLE
Display: unprocessable
Code Value: unprocessable Response code is 422.
-
-
Field Detail
-
VALUESET_IDENTIFIER
public static final String VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
- Constant Field Values
-
VALUESET_NAME
public static final String VALUESET_NAME
Name for this Value Set: AssertionResponseTypes- See Also:
- Constant Field Values
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<AssertionResponseTypesEnum> VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Detail
-
values
public static AssertionResponseTypesEnum[] 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 (AssertionResponseTypesEnum c : AssertionResponseTypesEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AssertionResponseTypesEnum 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
-
forCode
public static AssertionResponseTypesEnum forCode(String theCode)
Returns the enumerated value associated with this code
-
-