public static enum Result.Datatype extends Enum<Result.Datatype>
Enum Constant and Description |
---|
BOOLEAN
Represents a true/false type of result
|
CODED
Represents a Concept type of result
|
DATETIME
Represents a date type of result
|
NUMERIC
Represents number (float, double, int) type of results
|
TEXT
Represents string type of results
|
Modifier and Type | Method and Description |
---|---|
static Result.Datatype |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Result.Datatype[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Result.Datatype BOOLEAN
public static final Result.Datatype CODED
public static final Result.Datatype DATETIME
public static final Result.Datatype NUMERIC
public static final Result.Datatype TEXT
public static Result.Datatype[] values()
for (Result.Datatype c : Result.Datatype.values()) System.out.println(c);
public static Result.Datatype 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 nullCopyright © 2024 OpenMRS Inc.. All rights reserved.