public enum ConfigDataType extends Enum<ConfigDataType>
| 枚举常量和说明 |
|---|
properties
data type properties
|
yaml
data type yaml
|
| 限定符和类型 | 方法和说明 |
|---|---|
static ConfigDataType |
getType(String name)
Gets type.
|
static ConfigDataType |
getTypeBySuffix(String suffix)
Gets type by suffix.
|
static ConfigDataType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static ConfigDataType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final ConfigDataType yaml
public static final ConfigDataType properties
public static ConfigDataType[] values()
for (ConfigDataType c : ConfigDataType.values()) System.out.println(c);
public static ConfigDataType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public static ConfigDataType getType(String name)
name - the namepublic static ConfigDataType getTypeBySuffix(String suffix)
suffix - the suffixCopyright © 2022 Seata. All rights reserved.