Package com.ibm.fhir.model.type.code
Enum EligibilityResponsePurpose.ValueSet
- java.lang.Object
-
- java.lang.Enum<EligibilityResponsePurpose.ValueSet>
-
- com.ibm.fhir.model.type.code.EligibilityResponsePurpose.ValueSet
-
- All Implemented Interfaces:
Serializable,Comparable<EligibilityResponsePurpose.ValueSet>
- Enclosing class:
- EligibilityResponsePurpose
public static enum EligibilityResponsePurpose.ValueSet extends Enum<EligibilityResponsePurpose.ValueSet>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTH_REQUIREMENTSCoverage auth-requirementsBENEFITSCoverage benefitsDISCOVERYCoverage DiscoveryVALIDATIONCoverage Validation
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EligibilityResponsePurpose.ValueSetfrom(String value)Factory method for creating EligibilityResponsePurpose.ValueSet values from a passed string value.Stringvalue()static EligibilityResponsePurpose.ValueSetvalueOf(String name)Returns the enum constant of this type with the specified name.static EligibilityResponsePurpose.ValueSet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTH_REQUIREMENTS
public static final EligibilityResponsePurpose.ValueSet AUTH_REQUIREMENTS
Coverage auth-requirementsThe prior authorization requirements for the listed, or discovered if specified, converages for the categories of service and/or specifed biling codes are requested.
-
BENEFITS
public static final EligibilityResponsePurpose.ValueSet BENEFITS
Coverage benefitsThe plan benefits and optionally benefits consumed for the listed, or discovered if specified, converages are requested.
-
DISCOVERY
public static final EligibilityResponsePurpose.ValueSet DISCOVERY
Coverage DiscoveryThe insurer is requested to report on any coverages which they are aware of in addition to any specifed.
-
VALIDATION
public static final EligibilityResponsePurpose.ValueSet VALIDATION
Coverage ValidationA check that the specified coverages are in-force is requested.
-
-
Method Detail
-
values
public static EligibilityResponsePurpose.ValueSet[] 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 (EligibilityResponsePurpose.ValueSet c : EligibilityResponsePurpose.ValueSet.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EligibilityResponsePurpose.ValueSet 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()
- Returns:
- The java.lang.String value of the code represented by this enum
-
from
public static EligibilityResponsePurpose.ValueSet from(String value)
Factory method for creating EligibilityResponsePurpose.ValueSet values from a passed string value.- Parameters:
value- A string that matches one of the allowed code values- Throws:
IllegalArgumentException- If the passed string cannot be parsed into an allowed code value
-
-