Package io.opentelemetry.api.common
Class AutoValue_KeyValueImpl
- java.lang.Object
-
- io.opentelemetry.api.common.KeyValueImpl
-
- io.opentelemetry.api.common.AutoValue_KeyValueImpl
-
- All Implemented Interfaces:
KeyValue
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_KeyValueImpl extends KeyValueImpl
-
-
Constructor Summary
Constructors Constructor Description AutoValue_KeyValueImpl(java.lang.String key, Value<?> value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
java.lang.String
getKey()
Returns the key.Value<?>
getValue()
Returns the value.int
hashCode()
java.lang.String
toString()
-
Methods inherited from class io.opentelemetry.api.common.KeyValueImpl
create
-
-
-
-
Field Detail
-
key
private final java.lang.String key
-
value
private final Value<?> value
-
-
Constructor Detail
-
AutoValue_KeyValueImpl
AutoValue_KeyValueImpl(java.lang.String key, Value<?> value)
-
-
Method Detail
-
getKey
public java.lang.String getKey()
Description copied from interface:KeyValue
Returns the key.
-
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
-
-