Package io.opencensus.metrics
Class AutoValue_LabelValue
- java.lang.Object
-
- io.opencensus.metrics.LabelValue
-
- io.opencensus.metrics.AutoValue_LabelValue
-
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_LabelValue extends LabelValue
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
value
-
Constructor Summary
Constructors Constructor Description AutoValue_LabelValue(java.lang.String value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
java.lang.String
getValue()
Returns the value of thisLabelValue
.int
hashCode()
java.lang.String
toString()
-
Methods inherited from class io.opencensus.metrics.LabelValue
create
-
-
-
-
Method Detail
-
getValue
@Nullable public java.lang.String getValue()
Description copied from class:LabelValue
Returns the value of thisLabelValue
. Returnsnull
if the value is unset and supposed to be ignored.- Specified by:
getValue
in classLabelValue
- Returns:
- the value.
-
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
-
-