|
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<Result.Datatype>
org.openmrs.logic.result.Result.Datatype
public static enum Result.Datatype
Core datatypes for a result. Each result is one of these datatypes, but can be easily coerced into the other datatypes. To promote flexibility and maximize re-usability of logic rules, the value of a result can be controlled individually for each datatype — i.e., specfic datatype representations of a single result can be overridden. For example, a result could have a numeric value of 0.15 and its text value could be overridden to be "15 percent" or "Fifteen percent."
| Enum Constant Summary | |
|---|---|
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 |
|
| Method Summary | |
|---|---|
static Result.Datatype |
valueOf(java.lang.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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
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
| Method Detail |
|---|
public static Result.Datatype[] values()
for (Result.Datatype c : Result.Datatype.values()) System.out.println(c);
public static Result.Datatype 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 name
java.lang.NullPointerException - if the argument is null
|
OpenMRS-1.7.x | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||