public static enum NettyHttpServerConfiguration.NettyListenerConfiguration.Family extends Enum<NettyHttpServerConfiguration.NettyListenerConfiguration.Family>
| Enum Constant and Description |
|---|
TCP
TCP socket.
|
UNIX
UNIX domain socket.
|
| Modifier and Type | Method and Description |
|---|---|
static NettyHttpServerConfiguration.NettyListenerConfiguration.Family |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NettyHttpServerConfiguration.NettyListenerConfiguration.Family[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NettyHttpServerConfiguration.NettyListenerConfiguration.Family TCP
public static final NettyHttpServerConfiguration.NettyListenerConfiguration.Family UNIX
public static NettyHttpServerConfiguration.NettyListenerConfiguration.Family[] values()
for (NettyHttpServerConfiguration.NettyListenerConfiguration.Family c : NettyHttpServerConfiguration.NettyListenerConfiguration.Family.values()) System.out.println(c);
public static NettyHttpServerConfiguration.NettyListenerConfiguration.Family 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 null