public enum LongRunningFinalState extends Enum<LongRunningFinalState>
| Enum Constant and Description |
|---|
AZURE_ASYNC_OPERATION
Indicate that use azure async operation uri to retrieve the final state.
|
DEFAULT
Indicate that no specific action required to retrieve the final state.
|
LOCATION
Indicate that use location uri to retrieve the final state.
|
ORIGINAL_URI
Indicate that use original uri to retrieve the final state.
|
| Modifier and Type | Method and Description |
|---|---|
static LongRunningFinalState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LongRunningFinalState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LongRunningFinalState DEFAULT
public static final LongRunningFinalState AZURE_ASYNC_OPERATION
public static final LongRunningFinalState LOCATION
public static final LongRunningFinalState ORIGINAL_URI
public static LongRunningFinalState[] values()
for (LongRunningFinalState c : LongRunningFinalState.values()) System.out.println(c);
public static LongRunningFinalState 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 null/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/