Package io.helidon.common.metrics
Interface InternalBridge.Tag
-
- Enclosing interface:
- InternalBridge
public static interface InternalBridge.TagVersion-neutral representation of a tag.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetTagName()StringgetTagValue()static InternalBridge.TagnewTag(String name, String value)Creates a new version-neutral tag with the specified name and value.
-
-
-
Method Detail
-
newTag
static InternalBridge.Tag newTag(String name, String value)
Creates a new version-neutral tag with the specified name and value.- Parameters:
name- name for the new tagvalue- value for the new tag- Returns:
- the new version-neutral tag
-
getTagName
String getTagName()
- Returns:
- the tag's name
-
getTagValue
String getTagValue()
- Returns:
- the tag's value
-
-