Package io.opentelemetry.api.baggage
Class AutoValue_ImmutableEntry
- java.lang.Object
-
- io.opentelemetry.api.baggage.ImmutableEntry
-
- io.opentelemetry.api.baggage.AutoValue_ImmutableEntry
-
- All Implemented Interfaces:
BaggageEntry
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_ImmutableEntry extends ImmutableEntry
-
-
Field Summary
Fields Modifier and Type Field Description private BaggageEntryMetadata
metadata
private java.lang.String
value
-
Constructor Summary
Constructors Constructor Description AutoValue_ImmutableEntry(java.lang.String value, BaggageEntryMetadata metadata)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
BaggageEntryMetadata
getMetadata()
Returns the entry'sBaggageEntryMetadata
.java.lang.String
getValue()
Returns the entry's value.int
hashCode()
java.lang.String
toString()
-
Methods inherited from class io.opentelemetry.api.baggage.ImmutableEntry
create
-
-
-
-
Field Detail
-
value
private final java.lang.String value
-
metadata
private final BaggageEntryMetadata metadata
-
-
Constructor Detail
-
AutoValue_ImmutableEntry
AutoValue_ImmutableEntry(java.lang.String value, BaggageEntryMetadata metadata)
-
-
Method Detail
-
getValue
public java.lang.String getValue()
Description copied from interface:BaggageEntry
Returns the entry's value.
-
getMetadata
public BaggageEntryMetadata getMetadata()
Description copied from interface:BaggageEntry
Returns the entry'sBaggageEntryMetadata
.
-
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
-
-