public enum SocketMode extends java.lang.Enum<SocketMode>
PLAIN mode uses a Socket, all other modes use
different configurations of a SSLSocket.| Enum Constant and Description |
|---|
PLAIN
Use a plain
Socket. |
SECURE
Uses SSL or TLS
|
SSL
Uses SSL only
|
TLS
Uses TLS only
|
| Modifier and Type | Method and Description |
|---|---|
static SocketMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SocketMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SocketMode PLAIN
public static final SocketMode SECURE
public static final SocketMode SSL
public static final SocketMode TLS
public static SocketMode[] values()
for (SocketMode c : SocketMode.values()) System.out.println(c);
public static SocketMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2018. All Rights Reserved.