public static enum CoordinatorConfig.ClientVersionConfig extends Enum<CoordinatorConfig.ClientVersionConfig>
| Enum Constant and Description |
|---|
CLIENT_VERSION_CONFIG_3X
A new application operating with KCLv3.x will use this value.
|
CLIENT_VERSION_CONFIG_COMPATIBLE_WITH_2X
For an application that was operating with previous KCLv2.x, during
upgrade to KCLv3.x, a migration process is needed due to the incompatible
changes between the 2 versions.
|
| Modifier and Type | Method and Description |
|---|---|
static CoordinatorConfig.ClientVersionConfig |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoordinatorConfig.ClientVersionConfig[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoordinatorConfig.ClientVersionConfig CLIENT_VERSION_CONFIG_COMPATIBLE_WITH_2X
public static final CoordinatorConfig.ClientVersionConfig CLIENT_VERSION_CONFIG_3X
public static CoordinatorConfig.ClientVersionConfig[] values()
for (CoordinatorConfig.ClientVersionConfig c : CoordinatorConfig.ClientVersionConfig.values()) System.out.println(c);
public static CoordinatorConfig.ClientVersionConfig 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 nullCopyright © 2025. All rights reserved.