- java.lang.Object
-
- java.lang.Enum<ChannelName>
-
- com.microsoft.gctoolkit.message.ChannelName
-
- All Implemented Interfaces:
Serializable,Comparable<ChannelName>
public enum ChannelName extends Enum<ChannelName>
A list of all of the channel names that are available for publishing on.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()StringtoString()static ChannelNamevalueOf(String name)Returns the enum constant of this type with the specified name.static ChannelName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATA_SOURCE
public static final ChannelName DATA_SOURCE
-
PARSER_INBOX
public static final ChannelName PARSER_INBOX
-
JVM_EVENT_PARSER_OUTBOX
public static final ChannelName JVM_EVENT_PARSER_OUTBOX
-
SURVIVOR_MEMORY_POOL_PARSER_OUTBOX
public static final ChannelName SURVIVOR_MEMORY_POOL_PARSER_OUTBOX
-
GENERATIONAL_HEAP_PARSER_OUTBOX
public static final ChannelName GENERATIONAL_HEAP_PARSER_OUTBOX
-
CMS_TENURED_POOL_PARSER_OUTBOX
public static final ChannelName CMS_TENURED_POOL_PARSER_OUTBOX
-
G1GC_PARSER_OUTBOX
public static final ChannelName G1GC_PARSER_OUTBOX
-
ZGC_PARSER_OUTBOX
public static final ChannelName ZGC_PARSER_OUTBOX
-
SHENANDOAH_PARSER_OUTBOX
public static final ChannelName SHENANDOAH_PARSER_OUTBOX
-
-
Method Detail
-
values
public static ChannelName[] 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 (ChannelName c : ChannelName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ChannelName 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
-
getName
public String getName()
-
toString
public String toString()
- Overrides:
toStringin classEnum<ChannelName>
-
-