public static enum ConfigEntry.ConfigSource extends java.lang.Enum<ConfigEntry.ConfigSource>
| Enum Constant | Description | 
|---|---|
| DEFAULT_CONFIG | |
| DYNAMIC_BROKER_CONFIG | |
| DYNAMIC_DEFAULT_BROKER_CONFIG | |
| DYNAMIC_TOPIC_CONFIG | |
| STATIC_BROKER_CONFIG | |
| UNKNOWN | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static ConfigEntry.ConfigSource | valueOf(java.lang.String name) | Returns the enum constant of this type with the specified name. | 
| static ConfigEntry.ConfigSource[] | values() | Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ConfigEntry.ConfigSource DYNAMIC_TOPIC_CONFIG
public static final ConfigEntry.ConfigSource DYNAMIC_BROKER_CONFIG
public static final ConfigEntry.ConfigSource DYNAMIC_DEFAULT_BROKER_CONFIG
public static final ConfigEntry.ConfigSource STATIC_BROKER_CONFIG
public static final ConfigEntry.ConfigSource DEFAULT_CONFIG
public static final ConfigEntry.ConfigSource UNKNOWN
public static ConfigEntry.ConfigSource[] values()
for (ConfigEntry.ConfigSource c : ConfigEntry.ConfigSource.values()) System.out.println(c);
public static ConfigEntry.ConfigSource valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null