public enum ContainerServiceOchestratorTypes extends Enum<ContainerServiceOchestratorTypes>
| Enum Constant and Description |
|---|
CUSTOM
Enum value Custom.
|
DCOS
Enum value DCOS.
|
KUBERNETES
Enum value Kubernetes.
|
SWARM
Enum value Swarm.
|
| Modifier and Type | Method and Description |
|---|---|
static ContainerServiceOchestratorTypes |
fromString(String value)
Parses a serialized value to a ContainerServiceOchestratorTypes instance.
|
String |
toString() |
static ContainerServiceOchestratorTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContainerServiceOchestratorTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerServiceOchestratorTypes SWARM
public static final ContainerServiceOchestratorTypes DCOS
public static final ContainerServiceOchestratorTypes CUSTOM
public static final ContainerServiceOchestratorTypes KUBERNETES
public static ContainerServiceOchestratorTypes[] values()
for (ContainerServiceOchestratorTypes c : ContainerServiceOchestratorTypes.values()) System.out.println(c);
public static ContainerServiceOchestratorTypes 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 ContainerServiceOchestratorTypes fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<ContainerServiceOchestratorTypes>/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/