Interface Replay.ResultsSummaryOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Replay.ResultsSummary,Replay.ResultsSummary.Builder
- Enclosing class:
- Replay
public static interface Replay.ResultsSummaryOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetDifferenceCount()The number of replayed log entries with a difference between baseline and simulated policies.intgetErrorCount()The number of log entries that could not be replayed.intgetLogCount()The total number of log entries replayed.com.google.type.DategetNewestDate()The date of the newest log entry replayed.com.google.type.DateOrBuildergetNewestDateOrBuilder()The date of the newest log entry replayed.com.google.type.DategetOldestDate()The date of the oldest log entry replayed.com.google.type.DateOrBuildergetOldestDateOrBuilder()The date of the oldest log entry replayed.intgetUnchangedCount()The number of replayed log entries with no difference between baseline and simulated policies.booleanhasNewestDate()The date of the newest log entry replayed.booleanhasOldestDate()The date of the oldest log entry replayed.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLogCount
int getLogCount()
The total number of log entries replayed.
int32 log_count = 1;- Returns:
- The logCount.
-
getUnchangedCount
int getUnchangedCount()
The number of replayed log entries with no difference between baseline and simulated policies.
int32 unchanged_count = 2;- Returns:
- The unchangedCount.
-
getDifferenceCount
int getDifferenceCount()
The number of replayed log entries with a difference between baseline and simulated policies.
int32 difference_count = 3;- Returns:
- The differenceCount.
-
getErrorCount
int getErrorCount()
The number of log entries that could not be replayed.
int32 error_count = 4;- Returns:
- The errorCount.
-
hasOldestDate
boolean hasOldestDate()
The date of the oldest log entry replayed.
.google.type.Date oldest_date = 5;- Returns:
- Whether the oldestDate field is set.
-
getOldestDate
com.google.type.Date getOldestDate()
The date of the oldest log entry replayed.
.google.type.Date oldest_date = 5;- Returns:
- The oldestDate.
-
getOldestDateOrBuilder
com.google.type.DateOrBuilder getOldestDateOrBuilder()
The date of the oldest log entry replayed.
.google.type.Date oldest_date = 5;
-
hasNewestDate
boolean hasNewestDate()
The date of the newest log entry replayed.
.google.type.Date newest_date = 6;- Returns:
- Whether the newestDate field is set.
-
getNewestDate
com.google.type.Date getNewestDate()
The date of the newest log entry replayed.
.google.type.Date newest_date = 6;- Returns:
- The newestDate.
-
getNewestDateOrBuilder
com.google.type.DateOrBuilder getNewestDateOrBuilder()
The date of the newest log entry replayed.
.google.type.Date newest_date = 6;
-
-