public static enum LZ77Compressor.Block.BlockType extends java.lang.Enum<LZ77Compressor.Block.BlockType>
Enum Constant and Description |
---|
BACK_REFERENCE |
EOD |
LITERAL |
Modifier and Type | Method and Description |
---|---|
static LZ77Compressor.Block.BlockType |
valueOf(java.lang.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(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"