public static enum PackWriter.PackingPhase extends java.lang.Enum<PackWriter.PackingPhase>
Enum Constant and Description |
---|
COMPRESSING
Compressing objects phase.
|
COUNTING
Counting objects phase.
|
FINDING_SOURCES
Finding sources phase.
|
GETTING_SIZES
Getting sizes phase.
|
WRITING
Writing objects phase.
|
Modifier and Type | Method and Description |
---|---|
static PackWriter.PackingPhase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PackWriter.PackingPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PackWriter.PackingPhase COUNTING
public static final PackWriter.PackingPhase GETTING_SIZES
public static final PackWriter.PackingPhase FINDING_SOURCES
public static final PackWriter.PackingPhase COMPRESSING
public static final PackWriter.PackingPhase WRITING
public static PackWriter.PackingPhase[] values()
for (PackWriter.PackingPhase c : PackWriter.PackingPhase.values()) System.out.println(c);
public static PackWriter.PackingPhase 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 nullCopyright © 2012. All Rights Reserved.