public enum DebugTransport extends Enum<DebugTransport>
| Enum Constant and Description |
|---|
AttachingMemory |
AttachingSocket |
ListeningMemory |
ListeningSocket |
| Modifier and Type | Method and Description |
|---|---|
String |
getAgentArgs() |
String |
getDisplayName() |
String |
getFqn() |
String |
toString() |
static DebugTransport |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DebugTransport[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DebugTransport AttachingSocket
public static final DebugTransport ListeningSocket
public static final DebugTransport AttachingMemory
public static final DebugTransport ListeningMemory
public static DebugTransport[] values()
for (DebugTransport c : DebugTransport.values()) System.out.println(c);
public static DebugTransport 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 nullpublic String getDisplayName()
public String getFqn()
public String getAgentArgs()
public String toString()
toString in class Enum<DebugTransport>Copyright © 2017. All rights reserved.