private static enum SSLSocketChannel.ChannelStatus extends Enum<SSLSocketChannel.ChannelStatus>
| Enum Constant and Description |
|---|
CLOSED |
CONNECTED |
CONNECTING |
DISCONNECTED |
ESTABLISHED |
HANDSHAKING |
| Modifier and Type | Method and Description |
|---|---|
static SSLSocketChannel.ChannelStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SSLSocketChannel.ChannelStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SSLSocketChannel.ChannelStatus DISCONNECTED
public static final SSLSocketChannel.ChannelStatus CONNECTING
public static final SSLSocketChannel.ChannelStatus CONNECTED
public static final SSLSocketChannel.ChannelStatus HANDSHAKING
public static final SSLSocketChannel.ChannelStatus ESTABLISHED
public static final SSLSocketChannel.ChannelStatus CLOSED
public static SSLSocketChannel.ChannelStatus[] values()
for (SSLSocketChannel.ChannelStatus c : SSLSocketChannel.ChannelStatus.values()) System.out.println(c);
public static SSLSocketChannel.ChannelStatus 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 © 2023 Apache NiFi Project. All rights reserved.