public enum ProgressListenerEvent extends Enum<ProgressListenerEvent>
| Enum Constant and Description |
|---|
REQUEST_BYTE_TRANSFER_EVENT |
TRANSFER_PART_COMPLETED_EVENT |
TRANSFER_PART_FAILED_EVENT |
TRANSFER_PART_STARTED_EVENT |
| Modifier and Type | Method and Description |
|---|---|
static ProgressListenerEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProgressListenerEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgressListenerEvent REQUEST_BYTE_TRANSFER_EVENT
public static final ProgressListenerEvent TRANSFER_PART_STARTED_EVENT
public static final ProgressListenerEvent TRANSFER_PART_COMPLETED_EVENT
public static final ProgressListenerEvent TRANSFER_PART_FAILED_EVENT
public static ProgressListenerEvent[] values()
for (ProgressListenerEvent c : ProgressListenerEvent.values()) System.out.println(c);
public static ProgressListenerEvent 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 © 2008–2024 Apache Software Foundation. All rights reserved.