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 Attributes
attributes
private java.lang.String
name
private java.lang.String
schemaUrl
private java.lang.String
version
-
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 boolean
equals(java.lang.Object o)
Attributes
getAttributes()
Returns the attributes of this instrumentation scope.java.lang.String
getName()
Returns the name of the instrumentation scope.java.lang.String
getSchemaUrl()
Returns the URL of the schema used by this instrumentation scope, ornull
if not available.java.lang.String
getVersion()
Returns the version of the instrumentation scope, ornull
if not available.int
hashCode()
java.lang.String
toString()
-
-
-
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:InstrumentationScopeInfo
Returns the name of the instrumentation scope.- Specified by:
getName
in classInstrumentationScopeInfo
-
getVersion
@Nullable public java.lang.String getVersion()
Description copied from class:InstrumentationScopeInfo
Returns the version of the instrumentation scope, ornull
if not available.- Specified by:
getVersion
in classInstrumentationScopeInfo
-
getSchemaUrl
@Nullable public java.lang.String getSchemaUrl()
Description copied from class:InstrumentationScopeInfo
Returns the URL of the schema used by this instrumentation scope, ornull
if not available.- Specified by:
getSchemaUrl
in classInstrumentationScopeInfo
-
getAttributes
public Attributes getAttributes()
Description copied from class:InstrumentationScopeInfo
Returns the attributes of this instrumentation scope.- Specified by:
getAttributes
in classInstrumentationScopeInfo
-
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
-
-