Package io.opencensus.trace.export
Class AutoValue_RunningSpanStore_Filter
- java.lang.Object
-
- io.opencensus.trace.export.RunningSpanStore.Filter
-
- io.opencensus.trace.export.AutoValue_RunningSpanStore_Filter
-
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_RunningSpanStore_Filter extends RunningSpanStore.Filter
-
-
Field Summary
Fields Modifier and Type Field Description private int
maxSpansToReturn
private java.lang.String
spanName
-
Constructor Summary
Constructors Constructor Description AutoValue_RunningSpanStore_Filter(java.lang.String spanName, int maxSpansToReturn)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
getMaxSpansToReturn()
Returns the maximum number of spans to be returned.java.lang.String
getSpanName()
Returns the span name.int
hashCode()
java.lang.String
toString()
-
Methods inherited from class io.opencensus.trace.export.RunningSpanStore.Filter
create
-
-
-
-
Method Detail
-
getSpanName
public java.lang.String getSpanName()
Description copied from class:RunningSpanStore.Filter
Returns the span name.- Specified by:
getSpanName
in classRunningSpanStore.Filter
- Returns:
- the span name.
-
getMaxSpansToReturn
public int getMaxSpansToReturn()
Description copied from class:RunningSpanStore.Filter
Returns the maximum number of spans to be returned.0
means all.- Specified by:
getMaxSpansToReturn
in classRunningSpanStore.Filter
- Returns:
- the maximum number of spans to be returned.
-
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
-
-