public static enum CompressPipe.FileFormat extends Enum<CompressPipe.FileFormat>
Enum Constant and Description |
---|
GZ
Gzip format; also used when direction is compress and resultIsContent=
true
or when direction is decompress and messageIsContent=true |
ZIP
Zip format; also used when direction is compress and resultIsContent=
false
or when direction is decompress and messageIsContent=false |
Modifier and Type | Method and Description |
---|---|
static CompressPipe.FileFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompressPipe.FileFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompressPipe.FileFormat GZ
true
or when direction is decompress and messageIsContent=true
public static final CompressPipe.FileFormat ZIP
false
or when direction is decompress and messageIsContent=false
public static CompressPipe.FileFormat[] values()
for (CompressPipe.FileFormat c : CompressPipe.FileFormat.values()) System.out.println(c);
public static CompressPipe.FileFormat 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 nullCopyright © 2023 Frank!Framework. All rights reserved.