public static enum CodeDownloadException.Reason extends Enum<CodeDownloadException.Reason>
Enum Constant and Description |
---|
TERMINATED
Generic code for terminating the download.
|
Modifier and Type | Method and Description |
---|---|
static CodeDownloadException.Reason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CodeDownloadException.Reason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodeDownloadException.Reason TERMINATED
public static CodeDownloadException.Reason[] values()
for (CodeDownloadException.Reason c : CodeDownloadException.Reason.values()) System.out.println(c);
public static CodeDownloadException.Reason 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 © 2018. All rights reserved.