Package io.opencensus.trace
Class AutoValue_Annotation
- java.lang.Object
-
- io.opencensus.trace.Annotation
-
- io.opencensus.trace.AutoValue_Annotation
-
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_Annotation extends Annotation
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Map<java.lang.String,AttributeValue>
attributes
private java.lang.String
description
-
Constructor Summary
Constructors Constructor Description AutoValue_Annotation(java.lang.String description, java.util.Map<java.lang.String,AttributeValue> attributes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
java.util.Map<java.lang.String,AttributeValue>
getAttributes()
Return the attributes of theAnnotation
.java.lang.String
getDescription()
Return the description of theAnnotation
.int
hashCode()
java.lang.String
toString()
-
Methods inherited from class io.opencensus.trace.Annotation
fromDescription, fromDescriptionAndAttributes
-
-
-
-
Field Detail
-
description
private final java.lang.String description
-
attributes
private final java.util.Map<java.lang.String,AttributeValue> attributes
-
-
Constructor Detail
-
AutoValue_Annotation
AutoValue_Annotation(java.lang.String description, java.util.Map<java.lang.String,AttributeValue> attributes)
-
-
Method Detail
-
getDescription
public java.lang.String getDescription()
Description copied from class:Annotation
Return the description of theAnnotation
.- Specified by:
getDescription
in classAnnotation
- Returns:
- the description of the
Annotation
.
-
getAttributes
public java.util.Map<java.lang.String,AttributeValue> getAttributes()
Description copied from class:Annotation
Return the attributes of theAnnotation
.- Specified by:
getAttributes
in classAnnotation
- Returns:
- the attributes of the
Annotation
.
-
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
-
-