public enum ProfilingProducerScopeType extends Enum<ProfilingProducerScopeType>
ProfilingProducerScope within which the profiling data produced by a
ProfilingDataProducer will be bound to.
When ProfilingDataProducer.triggerProfilingEvent(T) is invoked, this scope will be taken into account to evaluate if there
are consumers enabled/disabled for it.| Enum Constant and Description |
|---|
ARTIFACT_SCOPE_TYPE
Producer scope type that represents an artifact.
|
| Modifier and Type | Method and Description |
|---|---|
static ProfilingProducerScopeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProfilingProducerScopeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfilingProducerScopeType ARTIFACT_SCOPE_TYPE
public static ProfilingProducerScopeType[] values()
for (ProfilingProducerScopeType c : ProfilingProducerScopeType.values()) System.out.println(c);
public static ProfilingProducerScopeType 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 © 2025 MuleSoft, Inc.. All rights reserved.