public enum V3CompressionAlgorithm extends Enum<V3CompressionAlgorithm>
| Enum Constant and Description |
|---|
BZ
bzip-2 compression format.
|
DF
The deflate compressed data format as specified in RFC 1951 [http://www.ietf.org/rfc/rfc1951.txt].
|
GZ
A compressed data format that is compatible with the widely used GZIP utility as specified in RFC 1952 [http://www.ietf.org/rfc/rfc1952.txt] (uses the deflate algorithm).
|
NULL
added to help the parsers
|
Z
Original UNIX compress algorithm and file format using the LZC algorithm (a variant of LZW).
|
Z7
7z compression file format.
|
ZL
A compressed data format that also uses the deflate algorithm.
|
| Modifier and Type | Method and Description |
|---|---|
static V3CompressionAlgorithm |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static V3CompressionAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static V3CompressionAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final V3CompressionAlgorithm BZ
public static final V3CompressionAlgorithm DF
public static final V3CompressionAlgorithm GZ
public static final V3CompressionAlgorithm Z
public static final V3CompressionAlgorithm Z7
public static final V3CompressionAlgorithm ZL
public static final V3CompressionAlgorithm NULL
public static V3CompressionAlgorithm[] values()
for (V3CompressionAlgorithm c : V3CompressionAlgorithm.values()) System.out.println(c);
public static V3CompressionAlgorithm 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 nullpublic static V3CompressionAlgorithm fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
org.hl7.fhir.exceptions.FHIRExceptionpublic String getDefinition()
public String getDisplay()
Copyright © 2014–2021 Health Level 7. All rights reserved.