use of uk.ac.bbsrc.tgac.miso.core.data.type.IlluminaWorkflowType in project miso-lims by miso-lims.
the class ConstantsController method addIlluminaWorkflowTypes.
private static void addIlluminaWorkflowTypes(ObjectNode node) {
ArrayNode illuminaWorkflowTypes = node.putArray("illuminaWorkflowTypes");
for (IlluminaWorkflowType wf : IlluminaWorkflowType.values()) {
ObjectNode dto = illuminaWorkflowTypes.addObject();
dto.put("label", wf.getLabel());
dto.put("value", wf.getRawValue());
}
}
Aggregations