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 BaggageEntryMetadatametadataprivate java.lang.Stringvalue
-
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 booleanequals(java.lang.Object o)BaggageEntryMetadatagetMetadata()Returns the entry'sBaggageEntryMetadata.java.lang.StringgetValue()Returns the entry's value.inthashCode()java.lang.StringtoString()-
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:BaggageEntryReturns the entry's value.
-
getMetadata
public BaggageEntryMetadata getMetadata()
Description copied from interface:BaggageEntryReturns the entry'sBaggageEntryMetadata.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-