Package com.ibm.fhir.model.type.code
Enum EligibilityRequestPurpose.ValueSet
- java.lang.Object
-
- java.lang.Enum<EligibilityRequestPurpose.ValueSet>
-
- com.ibm.fhir.model.type.code.EligibilityRequestPurpose.ValueSet
-
- All Implemented Interfaces:
Serializable,Comparable<EligibilityRequestPurpose.ValueSet>
- Enclosing class:
- EligibilityRequestPurpose
public static enum EligibilityRequestPurpose.ValueSet extends Enum<EligibilityRequestPurpose.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 EligibilityRequestPurpose.ValueSetfrom(String value)Factory method for creating EligibilityRequestPurpose.ValueSet values from a passed string value.Stringvalue()static EligibilityRequestPurpose.ValueSetvalueOf(String name)Returns the enum constant of this type with the specified name.static EligibilityRequestPurpose.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 EligibilityRequestPurpose.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 EligibilityRequestPurpose.ValueSet BENEFITS
Coverage benefitsThe plan benefits and optionally benefits consumed for the listed, or discovered if specified, converages are requested.
-
DISCOVERY
public static final EligibilityRequestPurpose.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 EligibilityRequestPurpose.ValueSet VALIDATION
Coverage ValidationA check that the specified coverages are in-force is requested.
-
-
Method Detail
-
values
public static EligibilityRequestPurpose.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 (EligibilityRequestPurpose.ValueSet c : EligibilityRequestPurpose.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 EligibilityRequestPurpose.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 EligibilityRequestPurpose.ValueSet from(String value)
Factory method for creating EligibilityRequestPurpose.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
-
-