public enum ClusterType extends Enum<ClusterType>
枚举常量和说明 |
---|
ALL_KINDS |
ECS_CLUSTER_TYPE |
K8S_CLUSTER_TYPE |
限定符和类型 | 方法和说明 |
---|---|
static ClusterType |
getType(int type) |
int |
value() |
static ClusterType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static ClusterType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final ClusterType K8S_CLUSTER_TYPE
public static final ClusterType ECS_CLUSTER_TYPE
public static final ClusterType ALL_KINDS
public static ClusterType[] values()
for (ClusterType c : ClusterType.values()) System.out.println(c);
public static ClusterType valueOf(String name)
name
- 要返回的枚举常量的名称。IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量NullPointerException
- 如果参数为空值public static ClusterType getType(int type)
public int value()
Copyright © 2016–2020. All rights reserved.