Package ca.uhn.fhir.rest.server.method
Enum BaseResourceReturningMethodBinding.MethodReturnTypeEnum
- java.lang.Object
-
- java.lang.Enum<BaseResourceReturningMethodBinding.MethodReturnTypeEnum>
-
- ca.uhn.fhir.rest.server.method.BaseResourceReturningMethodBinding.MethodReturnTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<BaseResourceReturningMethodBinding.MethodReturnTypeEnum>
- Enclosing class:
- BaseResourceReturningMethodBinding
public static enum BaseResourceReturningMethodBinding.MethodReturnTypeEnum extends Enum<BaseResourceReturningMethodBinding.MethodReturnTypeEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUNDLEBUNDLE_PROVIDERBUNDLE_RESOURCELIST_OF_RESOURCESMETHOD_OUTCOMERESOURCEVOID
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BaseResourceReturningMethodBinding.MethodReturnTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static BaseResourceReturningMethodBinding.MethodReturnTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BUNDLE
public static final BaseResourceReturningMethodBinding.MethodReturnTypeEnum BUNDLE
-
BUNDLE_PROVIDER
public static final BaseResourceReturningMethodBinding.MethodReturnTypeEnum BUNDLE_PROVIDER
-
BUNDLE_RESOURCE
public static final BaseResourceReturningMethodBinding.MethodReturnTypeEnum BUNDLE_RESOURCE
-
LIST_OF_RESOURCES
public static final BaseResourceReturningMethodBinding.MethodReturnTypeEnum LIST_OF_RESOURCES
-
METHOD_OUTCOME
public static final BaseResourceReturningMethodBinding.MethodReturnTypeEnum METHOD_OUTCOME
-
VOID
public static final BaseResourceReturningMethodBinding.MethodReturnTypeEnum VOID
-
RESOURCE
public static final BaseResourceReturningMethodBinding.MethodReturnTypeEnum RESOURCE
-
-
Method Detail
-
values
public static BaseResourceReturningMethodBinding.MethodReturnTypeEnum[] 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 (BaseResourceReturningMethodBinding.MethodReturnTypeEnum c : BaseResourceReturningMethodBinding.MethodReturnTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BaseResourceReturningMethodBinding.MethodReturnTypeEnum 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
-
-