public enum MatchGrade extends Enum<MatchGrade>
| Enum Constant and Description |
|---|
CERTAIN
This record meets the matching criteria to be automatically considered as a full match.
|
CERTAINLYNOT
This record is known not to be a match.
|
NULL
added to help the parsers
|
POSSIBLE
This record may be a matching one.
|
PROBABLE
This record is a close match, but not a certain match.
|
| Modifier and Type | Method and Description |
|---|---|
static MatchGrade |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static MatchGrade |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatchGrade[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchGrade CERTAIN
public static final MatchGrade PROBABLE
public static final MatchGrade POSSIBLE
public static final MatchGrade CERTAINLYNOT
public static final MatchGrade NULL
public static MatchGrade[] values()
for (MatchGrade c : MatchGrade.values()) System.out.println(c);
public static MatchGrade 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 MatchGrade 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.