public enum AgentSocketType extends Enum<AgentSocketType>
Enum Constant and Description |
---|
TCPIP |
UNIX_DOMAIN |
WINDOWS_NAMED_PIPE |
Modifier and Type | Method and Description |
---|---|
static AgentSocketType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AgentSocketType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AgentSocketType TCPIP
public static final AgentSocketType UNIX_DOMAIN
public static final AgentSocketType WINDOWS_NAMED_PIPE
public static AgentSocketType[] values()
for (AgentSocketType c : AgentSocketType.values()) System.out.println(c);
public static AgentSocketType 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 © 2024. All rights reserved.