Package net.jumpaku.exprml.pb.exprml.v1
Class EvaluateOutput
-
- All Implemented Interfaces:
-
com.google.protobuf.Message
,com.google.protobuf.MessageLite
,com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
,java.io.Serializable
,net.jumpaku.exprml.pb.exprml.v1.EvaluateOutputOrBuilder
public final class EvaluateOutput extends GeneratedMessage implements EvaluateOutputOrBuilder
Protobuf typeEvaluateOutput is the output message for the EvaluateExpr method.
exprml.v1.EvaluateOutput
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public enum
EvaluateOutput.Status
Protobuf enumStatus of the evaluation.
exprml.v1.EvaluateOutput.Status
public final class
EvaluateOutput.Builder
Protobuf typeEvaluateOutput is the output message for the EvaluateExpr method.
exprml.v1.EvaluateOutput
-
Field Summary
Fields Modifier and Type Field Description public final static int
STATUS_FIELD_NUMBER
public final static int
ERROR_MESSAGE_FIELD_NUMBER
public final static int
ERROR_PATH_FIELD_NUMBER
public final static int
VALUE_FIELD_NUMBER
-
Method Summary
Modifier and Type Method Description final static Descriptors.Descriptor
getDescriptor()
int
getStatusValue()
Status of the evaluation.
.exprml.v1.EvaluateOutput.Status status = 1 [json_name = "status"];
EvaluateOutput.Status
getStatus()
Status of the evaluation.
.exprml.v1.EvaluateOutput.Status status = 1 [json_name = "status"];
String
getErrorMessage()
Error message if status is not OK.
string error_message = 2 [json_name = "errorMessage"];
ByteString
getErrorMessageBytes()
Error message if status is not OK.
string error_message = 2 [json_name = "errorMessage"];
boolean
hasErrorPath()
Error path if status is not OK.
.exprml.v1.Expr.Path error_path = 3 [json_name = "errorPath"];
Expr.Path
getErrorPath()
Error path if status is not OK.
.exprml.v1.Expr.Path error_path = 3 [json_name = "errorPath"];
Expr.PathOrBuilder
getErrorPathOrBuilder()
Error path if status is not OK.
.exprml.v1.Expr.Path error_path = 3 [json_name = "errorPath"];
boolean
hasValue()
Result of the evaluation.
.exprml.v1.Value value = 4 [json_name = "value"];
Value
getValue()
Result of the evaluation.
.exprml.v1.Value value = 4 [json_name = "value"];
ValueOrBuilder
getValueOrBuilder()
Result of the evaluation.
.exprml.v1.Value value = 4 [json_name = "value"];
final boolean
isInitialized()
void
writeTo(CodedOutputStream output)
int
getSerializedSize()
boolean
equals(Object obj)
int
hashCode()
static EvaluateOutput
parseFrom(ByteBuffer data)
static EvaluateOutput
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
static EvaluateOutput
parseFrom(ByteString data)
static EvaluateOutput
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
static EvaluateOutput
parseFrom(Array<byte> data)
static EvaluateOutput
parseFrom(Array<byte> data, ExtensionRegistryLite extensionRegistry)
static EvaluateOutput
parseFrom(InputStream input)
static EvaluateOutput
parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
static EvaluateOutput
parseDelimitedFrom(InputStream input)
static EvaluateOutput
parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
static EvaluateOutput
parseFrom(CodedInputStream input)
static EvaluateOutput
parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
EvaluateOutput.Builder
newBuilderForType()
static EvaluateOutput.Builder
newBuilder()
static EvaluateOutput.Builder
newBuilder(EvaluateOutput prototype)
EvaluateOutput.Builder
toBuilder()
static EvaluateOutput
getDefaultInstance()
static Parser<EvaluateOutput>
parser()
Parser<EvaluateOutput>
getParserForType()
EvaluateOutput
getDefaultInstanceForType()
-
Methods inherited from class com.google.protobuf.GeneratedMessage
getAllFields, getDescriptorForType, getField, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof, newFileScopedGeneratedExtension, newMessageScopedGeneratedExtension
-
Methods inherited from class com.google.protobuf.AbstractMessage
findInitializationErrors, getInitializationErrorString, toString
-
Methods inherited from class com.google.protobuf.AbstractMessageLite
toByteArray, toByteString, writeDelimitedTo
-
Methods inherited from class com.google.protobuf.Message
getParserForType
-
Methods inherited from class com.google.protobuf.MessageLite
getParserForType
-
Methods inherited from class com.google.protobuf.MessageLiteOrBuilder
getDefaultInstanceForType
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getDescriptor
final static Descriptors.Descriptor getDescriptor()
-
getStatusValue
int getStatusValue()
Status of the evaluation.
.exprml.v1.EvaluateOutput.Status status = 1 [json_name = "status"];
- Returns:
The enum numeric value on the wire for status.
-
getStatus
EvaluateOutput.Status getStatus()
Status of the evaluation.
.exprml.v1.EvaluateOutput.Status status = 1 [json_name = "status"];
- Returns:
The status.
-
getErrorMessage
String getErrorMessage()
Error message if status is not OK.
string error_message = 2 [json_name = "errorMessage"];
- Returns:
The errorMessage.
-
getErrorMessageBytes
ByteString getErrorMessageBytes()
Error message if status is not OK.
string error_message = 2 [json_name = "errorMessage"];
- Returns:
The bytes for errorMessage.
-
hasErrorPath
boolean hasErrorPath()
Error path if status is not OK.
.exprml.v1.Expr.Path error_path = 3 [json_name = "errorPath"];
- Returns:
Whether the errorPath field is set.
-
getErrorPath
Expr.Path getErrorPath()
Error path if status is not OK.
.exprml.v1.Expr.Path error_path = 3 [json_name = "errorPath"];
- Returns:
The errorPath.
-
getErrorPathOrBuilder
Expr.PathOrBuilder getErrorPathOrBuilder()
Error path if status is not OK.
.exprml.v1.Expr.Path error_path = 3 [json_name = "errorPath"];
-
hasValue
boolean hasValue()
Result of the evaluation.
.exprml.v1.Value value = 4 [json_name = "value"];
- Returns:
Whether the value field is set.
-
getValue
Value getValue()
Result of the evaluation.
.exprml.v1.Value value = 4 [json_name = "value"];
- Returns:
The value.
-
getValueOrBuilder
ValueOrBuilder getValueOrBuilder()
Result of the evaluation.
.exprml.v1.Value value = 4 [json_name = "value"];
-
isInitialized
final boolean isInitialized()
-
writeTo
void writeTo(CodedOutputStream output)
-
getSerializedSize
int getSerializedSize()
-
hashCode
int hashCode()
-
parseFrom
static EvaluateOutput parseFrom(ByteBuffer data)
-
parseFrom
static EvaluateOutput parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
-
parseFrom
static EvaluateOutput parseFrom(ByteString data)
-
parseFrom
static EvaluateOutput parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
-
parseFrom
static EvaluateOutput parseFrom(Array<byte> data)
-
parseFrom
static EvaluateOutput parseFrom(Array<byte> data, ExtensionRegistryLite extensionRegistry)
-
parseFrom
static EvaluateOutput parseFrom(InputStream input)
-
parseFrom
static EvaluateOutput parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
-
parseDelimitedFrom
static EvaluateOutput parseDelimitedFrom(InputStream input)
-
parseDelimitedFrom
static EvaluateOutput parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
-
parseFrom
static EvaluateOutput parseFrom(CodedInputStream input)
-
parseFrom
static EvaluateOutput parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
-
newBuilderForType
EvaluateOutput.Builder newBuilderForType()
-
newBuilder
static EvaluateOutput.Builder newBuilder()
-
newBuilder
static EvaluateOutput.Builder newBuilder(EvaluateOutput prototype)
-
toBuilder
EvaluateOutput.Builder toBuilder()
-
getDefaultInstance
static EvaluateOutput getDefaultInstance()
-
parser
static Parser<EvaluateOutput> parser()
-
getParserForType
Parser<EvaluateOutput> getParserForType()
-
getDefaultInstanceForType
EvaluateOutput getDefaultInstanceForType()
-
-
-
-