public static enum LZ77Compressor.Block.BlockType extends Enum<LZ77Compressor.Block.BlockType>
| Enum Constant and Description | 
|---|
| BACK_REFERENCE | 
| EOD | 
| LITERAL | 
| Modifier and Type | Method and Description | 
|---|---|
| static LZ77Compressor.Block.BlockType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static LZ77Compressor.Block.BlockType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final LZ77Compressor.Block.BlockType LITERAL
public static final LZ77Compressor.Block.BlockType BACK_REFERENCE
public static final LZ77Compressor.Block.BlockType EOD
public static LZ77Compressor.Block.BlockType[] values()
for (LZ77Compressor.Block.BlockType c : LZ77Compressor.Block.BlockType.values()) System.out.println(c);
public static LZ77Compressor.Block.BlockType 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 © 2018 The Apache Software Foundation. All rights reserved.