public enum EnumCV_InsurancePayor extends java.lang.Enum<EnumCV_InsurancePayor>
| Enum Constant and Description |
|---|
COMMERCIAL_18_2 |
GOVERNMENT_18_1 |
HEALTH_MAINTENANCE_ORGANIZATION_18_3 |
NONE_18_4 |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCV_InsurancePayor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCV_InsurancePayor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCV_InsurancePayor GOVERNMENT_18_1
public static final EnumCV_InsurancePayor COMMERCIAL_18_2
public static final EnumCV_InsurancePayor HEALTH_MAINTENANCE_ORGANIZATION_18_3
public static final EnumCV_InsurancePayor NONE_18_4
public static EnumCV_InsurancePayor[] values()
for (EnumCV_InsurancePayor c : EnumCV_InsurancePayor.values()) System.out.println(c);
public static EnumCV_InsurancePayor valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()