public enum AccountStatus extends Enum<AccountStatus>
| Enum Constant and Description |
|---|
ACTIVE
This account is active and may be used.
|
ENTEREDINERROR
This instance should not have been part of this patient's medical record.
|
INACTIVE
This account is inactive and should not be used to track financial information.
|
NULL
added to help the parsers
|
ONHOLD
This account is on hold.
|
UNKNOWN
The account status is unknown.
|
| Modifier and Type | Method and Description |
|---|---|
static AccountStatus |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static AccountStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccountStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountStatus ACTIVE
public static final AccountStatus INACTIVE
public static final AccountStatus ENTEREDINERROR
public static final AccountStatus ONHOLD
public static final AccountStatus UNKNOWN
public static final AccountStatus NULL
public static AccountStatus[] values()
for (AccountStatus c : AccountStatus.values()) System.out.println(c);
public static AccountStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static AccountStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
org.hl7.fhir.exceptions.FHIRExceptionpublic String getDefinition()
public String getDisplay()
Copyright © 2014–2021 Health Level 7. All rights reserved.