Interface StatusOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Status
,Status.Builder
public interface StatusOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getErrorMessage()
Error message indicating reason of failure.com.google.protobuf.ByteString
getErrorMessageBytes()
Error message indicating reason of failure.Status.State
getState()
State enum for status.int
getStateValue()
State enum for status.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStateValue
int getStateValue()
State enum for status.
.google.maps.mapsplatformdatasets.v1.Status.State state = 1;
- Returns:
- The enum numeric value on the wire for state.
-
getState
Status.State getState()
State enum for status.
.google.maps.mapsplatformdatasets.v1.Status.State state = 1;
- Returns:
- The state.
-
getErrorMessage
String getErrorMessage()
Error message indicating reason of failure. It is empty if the datasets is not in a failed state.
string error_message = 2;
- Returns:
- The errorMessage.
-
getErrorMessageBytes
com.google.protobuf.ByteString getErrorMessageBytes()
Error message indicating reason of failure. It is empty if the datasets is not in a failed state.
string error_message = 2;
- Returns:
- The bytes for errorMessage.
-
-