Package io.temporal.worker
Enum PollerTypeMetricsTag.PollerType
- java.lang.Object
-
- java.lang.Enum<PollerTypeMetricsTag.PollerType>
-
- io.temporal.worker.PollerTypeMetricsTag.PollerType
-
- All Implemented Interfaces:
io.temporal.serviceclient.MetricsTag.TagValue,java.io.Serializable,java.lang.Comparable<PollerTypeMetricsTag.PollerType>
- Enclosing class:
- PollerTypeMetricsTag
public static enum PollerTypeMetricsTag.PollerType extends java.lang.Enum<PollerTypeMetricsTag.PollerType> implements io.temporal.serviceclient.MetricsTag.TagValue
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVITY_TASKNEXUS_TASKWORKFLOW_STICKY_TASKWORKFLOW_TASK
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetTag()java.lang.StringgetValue()static PollerTypeMetricsTag.PollerTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PollerTypeMetricsTag.PollerType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WORKFLOW_TASK
public static final PollerTypeMetricsTag.PollerType WORKFLOW_TASK
-
WORKFLOW_STICKY_TASK
public static final PollerTypeMetricsTag.PollerType WORKFLOW_STICKY_TASK
-
ACTIVITY_TASK
public static final PollerTypeMetricsTag.PollerType ACTIVITY_TASK
-
NEXUS_TASK
public static final PollerTypeMetricsTag.PollerType NEXUS_TASK
-
-
Method Detail
-
values
public static PollerTypeMetricsTag.PollerType[] 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 (PollerTypeMetricsTag.PollerType c : PollerTypeMetricsTag.PollerType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PollerTypeMetricsTag.PollerType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getTag
public java.lang.String getTag()
- Specified by:
getTagin interfaceio.temporal.serviceclient.MetricsTag.TagValue
-
getValue
public java.lang.String getValue()
- Specified by:
getValuein interfaceio.temporal.serviceclient.MetricsTag.TagValue
-
-