public static enum Progress.Result extends Enum<Progress.Result>
| Enum Constant and Description |
|---|
CANCELLED |
ERROR |
OBJECT_TYPE_ERRORS |
OK |
| Modifier and Type | Method and Description |
|---|---|
static Progress.Result |
getSeverestResult(Progress.Result res1,
Progress.Result res2) |
static Progress.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Progress.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Progress.Result OK
public static final Progress.Result ERROR
public static final Progress.Result OBJECT_TYPE_ERRORS
public static final Progress.Result CANCELLED
public static Progress.Result[] values()
for (Progress.Result c : Progress.Result.values()) System.out.println(c);
public static Progress.Result 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 nullpublic static Progress.Result getSeverestResult(Progress.Result res1, Progress.Result res2)
Copyright © 2024 Atlassian. All rights reserved.