public static enum MaintNotificationsConfig.EndpointType extends Enum<MaintNotificationsConfig.EndpointType>
Determines the format of endpoint addresses returned in MOVING notifications.
| Enum Constant and Description |
|---|
EXTERNAL_FQDN
External fully qualified domain name (for public network connections with TLS)
|
EXTERNAL_IP
External IP address (for public network connections)
|
INTERNAL_FQDN
Internal fully qualified domain name (for private network connections with TLS)
|
INTERNAL_IP
Internal IP address (for private network connections)
|
NONE
none indicates that the MOVING message doesn’t need to contain an endpoint.
|
| Modifier and Type | Method and Description |
|---|---|
static MaintNotificationsConfig.EndpointType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MaintNotificationsConfig.EndpointType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MaintNotificationsConfig.EndpointType INTERNAL_IP
public static final MaintNotificationsConfig.EndpointType INTERNAL_FQDN
public static final MaintNotificationsConfig.EndpointType EXTERNAL_IP
public static final MaintNotificationsConfig.EndpointType EXTERNAL_FQDN
public static final MaintNotificationsConfig.EndpointType NONE
public static MaintNotificationsConfig.EndpointType[] values()
for (MaintNotificationsConfig.EndpointType c : MaintNotificationsConfig.EndpointType.values()) System.out.println(c);
public static MaintNotificationsConfig.EndpointType 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.