Package io.opencensus.metrics
Class AutoValue_LabelKey
- java.lang.Object
-
- io.opencensus.metrics.LabelKey
-
- io.opencensus.metrics.AutoValue_LabelKey
-
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_LabelKey extends LabelKey
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
description
private java.lang.String
key
-
Constructor Summary
Constructors Constructor Description AutoValue_LabelKey(java.lang.String key, java.lang.String description)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
java.lang.String
getDescription()
Returns the description of thisLabelKey
.java.lang.String
getKey()
Returns the key of thisLabelKey
.int
hashCode()
java.lang.String
toString()
-
-
-
Method Detail
-
getKey
public java.lang.String getKey()
Description copied from class:LabelKey
Returns the key of thisLabelKey
.
-
getDescription
public java.lang.String getDescription()
Description copied from class:LabelKey
Returns the description of thisLabelKey
.- Specified by:
getDescription
in classLabelKey
- Returns:
- the description.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-