in ozhera-tspandata/src/main/java/org/apache/ozhera/tspandata/TSpanData.java [913:962]
public boolean isSet(TSpanData._Fields var1) {
if (var1 == null) {
throw new IllegalArgumentException();
} else {
switch(var1) {
case TRACE_ID:
return this.isSetTraceId();
case SPAN_ID:
return this.isSetSpanId();
case SAMPLED:
return this.isSetSampled();
case TRACE_STATE:
return this.isSetTraceState();
case PARENT_SPAN_CONTEXT:
return this.isSetParentSpanContext();
case RESOUCE:
return this.isSetResouce();
case INSTRUMENTATION_LIBRARY_INFO:
return this.isSetInstrumentationLibraryInfo();
case NAME:
return this.isSetName();
case KIND:
return this.isSetKind();
case START_EPOCH_NANOS:
return this.isSetStartEpochNanos();
case ATTRIBUTES:
return this.isSetAttributes();
case EVENTS:
return this.isSetEvents();
case LINKS:
return this.isSetLinks();
case STATUS:
return this.isSetStatus();
case END_EPOCH_NANOS:
return this.isSetEndEpochNanos();
case ENDED:
return this.isSetEnded();
case TOTAL_RECORDED_EVENTS:
return this.isSetTotalRecordedEvents();
case TOTAL_RECORDED_LINKS:
return this.isSetTotalRecordedLinks();
case TOTAL_ATTRIBUTE_COUNT:
return this.isSetTotalAttributeCount();
case EXTRA:
return this.isSetExtra();
default:
throw new IllegalStateException();
}
}
}