public static enum ProgressMonitor.Task extends Enum<ProgressMonitor.Task>
| Enum Constant and Description |
|---|
ADD_ENTRY |
CALCULATE_CRC |
EXTRACT_ENTRY |
MERGE_ZIP_FILES |
NONE |
REMOVE_ENTRY |
RENAME_FILE |
SET_COMMENT |
| Modifier and Type | Method and Description |
|---|---|
static ProgressMonitor.Task |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProgressMonitor.Task[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgressMonitor.Task NONE
public static final ProgressMonitor.Task ADD_ENTRY
public static final ProgressMonitor.Task REMOVE_ENTRY
public static final ProgressMonitor.Task CALCULATE_CRC
public static final ProgressMonitor.Task EXTRACT_ENTRY
public static final ProgressMonitor.Task MERGE_ZIP_FILES
public static final ProgressMonitor.Task SET_COMMENT
public static final ProgressMonitor.Task RENAME_FILE
public static ProgressMonitor.Task[] values()
for (ProgressMonitor.Task c : ProgressMonitor.Task.values()) System.out.println(c);
public static ProgressMonitor.Task 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 © 2021. All rights reserved.