public enum RebindState extends Enum<RebindState>
ClientOptions.getMaintNotificationsConfig()| Enum Constant and Description |
|---|
COMPLETED
The re-bind has been completed
|
STARTED
The re-bind has been initiated by the remote server
|
| Modifier and Type | Method and Description |
|---|---|
static RebindState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RebindState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RebindState STARTED
public static final RebindState COMPLETED
public static RebindState[] values()
for (RebindState c : RebindState.values()) System.out.println(c);
public static RebindState 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 lettuce.io. All rights reserved.