public static enum PackWriter.PackingPhase extends Enum<PackWriter.PackingPhase>
| Enum Constant and Description | 
|---|
BUILDING_BITMAPS
Building bitmaps phase. 
 | 
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(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 final PackWriter.PackingPhase BUILDING_BITMAPS
public static PackWriter.PackingPhase[] values()
for (PackWriter.PackingPhase c : PackWriter.PackingPhase.values()) System.out.println(c);
public static PackWriter.PackingPhase 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 Eclipse JGit Project. All rights reserved.