public static enum FramedLZ4CompressorOutputStream.BlockSize extends Enum<FramedLZ4CompressorOutputStream.BlockSize>
| Enum Constant and Description |
|---|
K256
Block size of 256K
|
K64
Block size of 64K
|
M1
Block size of 1M
|
M4
Block size of 4M
|
| Modifier and Type | Method and Description |
|---|---|
static FramedLZ4CompressorOutputStream.BlockSize |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FramedLZ4CompressorOutputStream.BlockSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FramedLZ4CompressorOutputStream.BlockSize K64
public static final FramedLZ4CompressorOutputStream.BlockSize K256
public static final FramedLZ4CompressorOutputStream.BlockSize M1
public static final FramedLZ4CompressorOutputStream.BlockSize M4
public static FramedLZ4CompressorOutputStream.BlockSize[] values()
for (FramedLZ4CompressorOutputStream.BlockSize c : FramedLZ4CompressorOutputStream.BlockSize.values()) System.out.println(c);
public static FramedLZ4CompressorOutputStream.BlockSize 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 © 2020 The Apache Software Foundation. All rights reserved.