public enum AzureResourceType extends Enum<AzureResourceType>
Enum Constant and Description |
---|
TRAFFIC_MANAGER
Enum value TrafficManager.
|
WEBSITE
Enum value Website.
|
Modifier and Type | Method and Description |
---|---|
static AzureResourceType |
fromString(String value)
Parses a serialized value to a AzureResourceType instance.
|
String |
toString() |
static AzureResourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AzureResourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AzureResourceType WEBSITE
public static final AzureResourceType TRAFFIC_MANAGER
public static AzureResourceType[] values()
for (AzureResourceType c : AzureResourceType.values()) System.out.println(c);
public static AzureResourceType 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 AzureResourceType fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<AzureResourceType>
Copyright © 2019. All rights reserved.