Enum Class SourceFormatType

java.lang.Object
java.lang.Enum<SourceFormatType>
org.projecthusky.valueset.enums.SourceFormatType
All Implemented Interfaces:
Serializable, Comparable<SourceFormatType>, Constable

public enum SourceFormatType extends Enum<SourceFormatType>
This enum allows a ValueSet to be configured according to its format. Based on this case distinction, the de-serialization corresponding to the data format is applied.
Dieses Enum dient dazu, dass ein ValueSet gemäss seinem Format konfiguriert werden kann. Anhand dieser Fallunterscheidung wird die, dem Datenformat entsprechende De-/Serialisierung angewendet.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    The ValueSet is available in IHE SVS XML format. Das ValueSet ist im IHE SVS Format verfügbar. Mime type: application/xml
    The ValueSet is available in JSON format. Das ValueSet ist im JSON Format verfügbar. Mime type: application/fhir+json
    The ValueSet is available in XML format. Das ValueSet ist im XML Format verfügbar. Mime type: application/fhir+xml
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • IHESVS

      public static final SourceFormatType IHESVS
      The ValueSet is available in IHE SVS XML format.
      Das ValueSet ist im IHE SVS Format verfügbar.
      Mime type: application/xml
    • JSON

      public static final SourceFormatType JSON
      The ValueSet is available in JSON format.
      Das ValueSet ist im JSON Format verfügbar.
      Mime type: application/fhir+json
    • XML

      public static final SourceFormatType XML
      The ValueSet is available in XML format.
      Das ValueSet ist im XML Format verfügbar.
      Mime type: application/fhir+xml
  • Method Details

    • values

      public static SourceFormatType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static SourceFormatType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null