Package com.google.cloud.workflows.v1
Interface Workflow.StateErrorOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Workflow.StateError
,Workflow.StateError.Builder
- Enclosing class:
- Workflow
public static interface Workflow.StateErrorOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDetails()
Provides specifics about the error.com.google.protobuf.ByteString
getDetailsBytes()
Provides specifics about the error.Workflow.StateError.Type
getType()
The type of this state error.int
getTypeValue()
The type of this state error.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDetails
String getDetails()
Provides specifics about the error.
string details = 1;
- Returns:
- The details.
-
getDetailsBytes
com.google.protobuf.ByteString getDetailsBytes()
Provides specifics about the error.
string details = 1;
- Returns:
- The bytes for details.
-
getTypeValue
int getTypeValue()
The type of this state error.
.google.cloud.workflows.v1.Workflow.StateError.Type type = 2;
- Returns:
- The enum numeric value on the wire for type.
-
getType
Workflow.StateError.Type getType()
The type of this state error.
.google.cloud.workflows.v1.Workflow.StateError.Type type = 2;
- Returns:
- The type.
-
-