CancelStatus.@Deprecated public enum CancelResult extends Enum<CancelResult>
| Enum Constant and Description |
|---|
CANCELLED
Deprecated.
|
CANCELLING
Deprecated.
|
NOT_CANCELLABLE
Deprecated.
|
UNSPECIFIED
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static CancelResult |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static CancelResult[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CancelResult UNSPECIFIED
public static final CancelResult CANCELLED
public static final CancelResult CANCELLING
public static final CancelResult NOT_CANCELLABLE
public static CancelResult[] values()
for (CancelResult c : CancelResult.values()) System.out.println(c);
public static CancelResult 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 © 2024 The Apache Software Foundation. All rights reserved.