Enum ChannelName

    • 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 name
        NullPointerException - if the argument is null
      • getName

        public String getName()