public enum ConfigChangeType extends Enum<ConfigChangeType>
| 枚举常量和说明 |
|---|
ADDED
A config is created.
|
DELETED
A config is deleted.
|
MODIFIED
A config is updated.
|
public static final ConfigChangeType ADDED
public static final ConfigChangeType MODIFIED
public static final ConfigChangeType DELETED
public static ConfigChangeType[] values()
for (ConfigChangeType c : ConfigChangeType.values()) System.out.println(c);
public static ConfigChangeType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2011–2023 The Apache Software Foundation. All rights reserved.