public enum HostType extends Enum<HostType>
| Enum Constant and Description |
|---|
AZURE_FUNCTION |
AZURE_WEB_APP |
KUBERNETES |
UNIDENTIFIED |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static HostType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HostType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HostType UNIDENTIFIED
public static final HostType AZURE_WEB_APP
public static final HostType AZURE_FUNCTION
public static final HostType KUBERNETES
public static HostType[] values()
for (HostType c : HostType.values()) System.out.println(c);
public static HostType 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 © 2020 Microsoft. All rights reserved.