Package com.exactpro.th2.common.grpc
Interface RootComparisonSettingsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RootComparisonSettings,RootComparisonSettings.Builder
public interface RootComparisonSettingsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetIgnoreFields(int index)These fields will not be considered during comparison.com.google.protobuf.ByteStringgetIgnoreFieldsBytes(int index)These fields will not be considered during comparison.intgetIgnoreFieldsCount()These fields will not be considered during comparison.java.util.List<java.lang.String>getIgnoreFieldsList()These fields will not be considered during comparison.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIgnoreFieldsList
java.util.List<java.lang.String> getIgnoreFieldsList()
These fields will not be considered during comparison. It concerns fields with simple or collection types. Comparison result will have the NA status for them.
repeated string ignore_fields = 1;- Returns:
- A list containing the ignoreFields.
-
getIgnoreFieldsCount
int getIgnoreFieldsCount()
These fields will not be considered during comparison. It concerns fields with simple or collection types. Comparison result will have the NA status for them.
repeated string ignore_fields = 1;- Returns:
- The count of ignoreFields.
-
getIgnoreFields
java.lang.String getIgnoreFields(int index)
These fields will not be considered during comparison. It concerns fields with simple or collection types. Comparison result will have the NA status for them.
repeated string ignore_fields = 1;- Parameters:
index- The index of the element to return.- Returns:
- The ignoreFields at the given index.
-
getIgnoreFieldsBytes
com.google.protobuf.ByteString getIgnoreFieldsBytes(int index)
These fields will not be considered during comparison. It concerns fields with simple or collection types. Comparison result will have the NA status for them.
repeated string ignore_fields = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the ignoreFields at the given index.
-
-