Interface ErrorDetailsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ErrorDetails
,ErrorDetails.Builder
public interface ErrorDetailsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsDetails(String key)
Additional structured details about this error.Map<String,String>
getDetails()
Deprecated.int
getDetailsCount()
Additional structured details about this error.Map<String,String>
getDetailsMap()
Additional structured details about this error.String
getDetailsOrDefault(String key, String defaultValue)
Additional structured details about this error.String
getDetailsOrThrow(String key)
Additional structured details about this error.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDetailsCount
int getDetailsCount()
Additional structured details about this error. Keys define the failure items. Value describes the exception or details of the item.
map<string, string> details = 1;
-
containsDetails
boolean containsDetails(String key)
Additional structured details about this error. Keys define the failure items. Value describes the exception or details of the item.
map<string, string> details = 1;
-
getDetails
@Deprecated Map<String,String> getDetails()
Deprecated.UsegetDetailsMap()
instead.
-
getDetailsMap
Map<String,String> getDetailsMap()
Additional structured details about this error. Keys define the failure items. Value describes the exception or details of the item.
map<string, string> details = 1;
-
getDetailsOrDefault
String getDetailsOrDefault(String key, String defaultValue)
Additional structured details about this error. Keys define the failure items. Value describes the exception or details of the item.
map<string, string> details = 1;
-
-