@Generated public enum AzureAvailability extends Enum<AzureAvailability>
| Enum Constant and Description |
|---|
ON_DEMAND_AZURE |
SPOT_AZURE |
SPOT_WITH_FALLBACK_AZURE |
| Modifier and Type | Method and Description |
|---|---|
static AzureAvailability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AzureAvailability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AzureAvailability ON_DEMAND_AZURE
public static final AzureAvailability SPOT_AZURE
public static final AzureAvailability SPOT_WITH_FALLBACK_AZURE
public static AzureAvailability[] values()
for (AzureAvailability c : AzureAvailability.values()) System.out.println(c);
public static AzureAvailability 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. All rights reserved.