001package org.hl7.fhir.dstu3.formats;
002
003public enum FhirFormat {
004  XML, JSON, JSONLD, TURTLE, TEXT, VBAR;
005
006  public String getExtension() {
007    switch (this) {
008      case JSON:
009        return "json";
010      case JSONLD:
011        return "ld.json";
012      case TURTLE:
013        return "ttl";
014      case XML:
015        return "xml";
016      case TEXT:
017        return "txt";
018      case VBAR:
019        return "hl7";
020    }
021    return null;
022  }
023}