Package org.mlflow.api.proto
Interface Assessments.AssessmentErrorOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Assessments.AssessmentError
,Assessments.AssessmentError.Builder
- Enclosing class:
- Assessments
public static interface Assessments.AssessmentErrorOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getErrorCode()
Value of an assessment when an error has occurred.com.google.protobuf.ByteString
getErrorCodeBytes()
Value of an assessment when an error has occurred.java.lang.String
getErrorMessage()
optional string error_message = 2;
com.google.protobuf.ByteString
getErrorMessageBytes()
optional string error_message = 2;
java.lang.String
getStackTrace()
Stack trace of the error.com.google.protobuf.ByteString
getStackTraceBytes()
Stack trace of the error.boolean
hasErrorCode()
Value of an assessment when an error has occurred.boolean
hasErrorMessage()
optional string error_message = 2;
boolean
hasStackTrace()
Stack trace of the error.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasErrorCode
boolean hasErrorCode()
Value of an assessment when an error has occurred.
optional string error_code = 1;
- Returns:
- Whether the errorCode field is set.
-
getErrorCode
java.lang.String getErrorCode()
Value of an assessment when an error has occurred.
optional string error_code = 1;
- Returns:
- The errorCode.
-
getErrorCodeBytes
com.google.protobuf.ByteString getErrorCodeBytes()
Value of an assessment when an error has occurred.
optional string error_code = 1;
- Returns:
- The bytes for errorCode.
-
hasErrorMessage
boolean hasErrorMessage()
optional string error_message = 2;
- Returns:
- Whether the errorMessage field is set.
-
getErrorMessage
java.lang.String getErrorMessage()
optional string error_message = 2;
- Returns:
- The errorMessage.
-
getErrorMessageBytes
com.google.protobuf.ByteString getErrorMessageBytes()
optional string error_message = 2;
- Returns:
- The bytes for errorMessage.
-
hasStackTrace
boolean hasStackTrace()
Stack trace of the error. Truncated to 1000 characters to avoid making TraceInfo too large.
optional string stack_trace = 3;
- Returns:
- Whether the stackTrace field is set.
-
getStackTrace
java.lang.String getStackTrace()
Stack trace of the error. Truncated to 1000 characters to avoid making TraceInfo too large.
optional string stack_trace = 3;
- Returns:
- The stackTrace.
-
getStackTraceBytes
com.google.protobuf.ByteString getStackTraceBytes()
Stack trace of the error. Truncated to 1000 characters to avoid making TraceInfo too large.
optional string stack_trace = 3;
- Returns:
- The bytes for stackTrace.
-
-