Enum PayloadStatus
- All Implemented Interfaces:
Comparable<PayloadStatus>
Where a payload transfer got to, carried by
PayloadTransferUpdate.-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe transfer was cancelled by either side.The transfer failed and will not resume.Bytes are still moving.Every byte arrived. -
Method Summary
Modifier and TypeMethodDescriptionstatic PayloadStatusReturns the enum constant of this type with the specified name.static PayloadStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class Enum
clone, compareTo, equals, getDeclaringClass, getEnumValues, hashCode, name, ordinal, setEnumValues, toString, valueOf
-
Enum Constant Details
-
IN_PROGRESS
Bytes are still moving.PayloadTransferUpdate.getBytesTransferred()says how many so far. -
SUCCESS
Every byte arrived. -
FAILURE
The transfer failed and will not resume. -
CANCELED
The transfer was cancelled by either side.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-