public enum ConnectStrategy extends Enum<ConnectStrategy>
Modifier and Type | Method and Description |
---|---|
static ConnectStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConnectStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectStrategy BALANCE
public static final ConnectStrategy LOCAL
public static final ConnectStrategy RANDOM
public static final ConnectStrategy SERIAL
public static ConnectStrategy 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 nullpublic static ConnectStrategy[] values()
for (ConnectStrategy c : ConnectStrategy.values()) System.out.println(c);
Copyright © 2023. All rights reserved.