Package io.opentelemetry.sdk.common
Class AutoValue_InstrumentationScopeInfo
- java.lang.Object
-
- io.opentelemetry.sdk.common.InstrumentationScopeInfo
-
- io.opentelemetry.sdk.common.AutoValue_InstrumentationScopeInfo
-
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_InstrumentationScopeInfo extends InstrumentationScopeInfo
-
-
Field Summary
Fields Modifier and Type Field Description private Attributesattributesprivate java.lang.Stringnameprivate java.lang.StringschemaUrlprivate java.lang.Stringversion
-
Constructor Summary
Constructors Constructor Description AutoValue_InstrumentationScopeInfo(java.lang.String name, java.lang.String version, java.lang.String schemaUrl, Attributes attributes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)AttributesgetAttributes()Returns the attributes of this instrumentation scope.java.lang.StringgetName()Returns the name of the instrumentation scope.java.lang.StringgetSchemaUrl()Returns the URL of the schema used by this instrumentation scope, ornullif not available.java.lang.StringgetVersion()Returns the version of the instrumentation scope, ornullif not available.inthashCode()java.lang.StringtoString()
-
-
-
Field Detail
-
name
private final java.lang.String name
-
version
private final java.lang.String version
-
schemaUrl
private final java.lang.String schemaUrl
-
attributes
private final Attributes attributes
-
-
Constructor Detail
-
AutoValue_InstrumentationScopeInfo
AutoValue_InstrumentationScopeInfo(java.lang.String name, @Nullable java.lang.String version, @Nullable java.lang.String schemaUrl, Attributes attributes)
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from class:InstrumentationScopeInfoReturns the name of the instrumentation scope.- Specified by:
getNamein classInstrumentationScopeInfo
-
getVersion
@Nullable public java.lang.String getVersion()
Description copied from class:InstrumentationScopeInfoReturns the version of the instrumentation scope, ornullif not available.- Specified by:
getVersionin classInstrumentationScopeInfo
-
getSchemaUrl
@Nullable public java.lang.String getSchemaUrl()
Description copied from class:InstrumentationScopeInfoReturns the URL of the schema used by this instrumentation scope, ornullif not available.- Specified by:
getSchemaUrlin classInstrumentationScopeInfo
-
getAttributes
public Attributes getAttributes()
Description copied from class:InstrumentationScopeInfoReturns the attributes of this instrumentation scope.- Specified by:
getAttributesin classInstrumentationScopeInfo
-
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
-
-