Package editor.run
Enum DebugTransport
- java.lang.Object
-
- java.lang.Enum<DebugTransport>
-
- editor.run.DebugTransport
-
- All Implemented Interfaces:
Serializable
,Comparable<DebugTransport>
public enum DebugTransport extends Enum<DebugTransport>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AttachingMemory
AttachingSocket
ListeningMemory
ListeningSocket
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
AttachingSocket
public static final DebugTransport AttachingSocket
-
ListeningSocket
public static final DebugTransport ListeningSocket
-
AttachingMemory
public static final DebugTransport AttachingMemory
-
ListeningMemory
public static final DebugTransport ListeningMemory
-
-
Method Detail
-
values
public static DebugTransport[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DebugTransport c : DebugTransport.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DebugTransport valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getDisplayName
public String getDisplayName()
-
getFqn
public String getFqn()
-
getAgentArgs
public String getAgentArgs()
-
toString
public String toString()
- Overrides:
toString
in classEnum<DebugTransport>
-
-