implements com.openxc.BinaryMessages.DiagnosticMessageOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.openxc.BinaryMessages.internal_static_openxc_DiagnosticMessage_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.openxc.BinaryMessages.internal_static_openxc_DiagnosticMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.openxc.BinaryMessages.DiagnosticMessage.class, com.openxc.BinaryMessages.DiagnosticMessage.Builder.class);
}
// Construct using com.openxc.BinaryMessages.DiagnosticMessage.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
bus_ = 0;
bitField0_ = (bitField0_ & ~0x00000001);
messageId_ = 0;
bitField0_ = (bitField0_ & ~0x00000002);
mode_ = 0;
bitField0_ = (bitField0_ & ~0x00000004);
pid_ = 0;
bitField0_ = (bitField0_ & ~0x00000008);
success_ = false;
bitField0_ = (bitField0_ & ~0x00000010);
negativeResponseCode_ = 0;
bitField0_ = (bitField0_ & ~0x00000020);
payload_ = com.google.protobuf.ByteString.EMPTY;
bitField0_ = (bitField0_ & ~0x00000040);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.openxc.BinaryMessages.internal_static_openxc_DiagnosticMessage_descriptor;
}
public com.openxc.BinaryMessages.DiagnosticMessage getDefaultInstanceForType() {
return com.openxc.BinaryMessages.DiagnosticMessage.getDefaultInstance();
}
public com.openxc.BinaryMessages.DiagnosticMessage build() {
com.openxc.BinaryMessages.DiagnosticMessage result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public com.openxc.BinaryMessages.DiagnosticMessage buildPartial() {
com.openxc.BinaryMessages.DiagnosticMessage result = new com.openxc.BinaryMessages.DiagnosticMessage(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.bus_ = bus_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.messageId_ = messageId_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.mode_ = mode_;
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
result.pid_ = pid_;
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
result.success_ = success_;
if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
to_bitField0_ |= 0x00000020;
}
result.negativeResponseCode_ = negativeResponseCode_;
if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
to_bitField0_ |= 0x00000040;
}
result.payload_ = payload_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.openxc.BinaryMessages.DiagnosticMessage) {
return mergeFrom((com.openxc.BinaryMessages.DiagnosticMessage)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.openxc.BinaryMessages.DiagnosticMessage other) {
if (other == com.openxc.BinaryMessages.DiagnosticMessage.getDefaultInstance()) return this;
if (other.hasBus()) {
setBus(other.getBus());
}
if (other.hasMessageId()) {
setMessageId(other.getMessageId());
}
if (other.hasMode()) {
setMode(other.getMode());
}
if (other.hasPid()) {
setPid(other.getPid());
}
if (other.hasSuccess()) {
setSuccess(other.getSuccess());
}
if (other.hasNegativeResponseCode()) {
setNegativeResponseCode(other.getNegativeResponseCode());
}
if (other.hasPayload()) {
setPayload(other.getPayload());
}
this.mergeUnknownFields(other.getUnknownFields());
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.openxc.BinaryMessages.DiagnosticMessage parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.openxc.BinaryMessages.DiagnosticMessage) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional int32 bus = 1;
private int bus_ ;
/**
* optional int32 bus = 1;
*/
public boolean hasBus() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional int32 bus = 1;
*/
public int getBus() {
return bus_;
}
/**
* optional int32 bus = 1;
*/
public Builder setBus(int value) {
bitField0_ |= 0x00000001;
bus_ = value;
onChanged();
return this;
}
/**
* optional int32 bus = 1;
*/
public Builder clearBus() {
bitField0_ = (bitField0_ & ~0x00000001);
bus_ = 0;
onChanged();
return this;
}
// optional uint32 message_id = 2;
private int messageId_ ;
/**
* optional uint32 message_id = 2;
*/
public boolean hasMessageId() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional uint32 message_id = 2;
*/
public int getMessageId() {
return messageId_;
}
/**
* optional uint32 message_id = 2;
*/
public Builder setMessageId(int value) {
bitField0_ |= 0x00000002;
messageId_ = value;
onChanged();
return this;
}
/**
* optional uint32 message_id = 2;
*/
public Builder clearMessageId() {
bitField0_ = (bitField0_ & ~0x00000002);
messageId_ = 0;
onChanged();
return this;
}
// optional uint32 mode = 3;
private int mode_ ;
/**
* optional uint32 mode = 3;
*/
public boolean hasMode() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional uint32 mode = 3;
*/
public int getMode() {
return mode_;
}
/**
* optional uint32 mode = 3;
*/
public Builder setMode(int value) {
bitField0_ |= 0x00000004;
mode_ = value;
onChanged();
return this;
}
/**
* optional uint32 mode = 3;
*/
public Builder clearMode() {
bitField0_ = (bitField0_ & ~0x00000004);
mode_ = 0;
onChanged();
return this;
}
// optional uint32 pid = 4;
private int pid_ ;
/**
* optional uint32 pid = 4;
*/
public boolean hasPid() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional uint32 pid = 4;
*/
public int getPid() {
return pid_;
}
/**
* optional uint32 pid = 4;
*/
public Builder setPid(int value) {
bitField0_ |= 0x00000008;
pid_ = value;
onChanged();
return this;
}
/**
* optional uint32 pid = 4;
*/
public Builder clearPid() {
bitField0_ = (bitField0_ & ~0x00000008);
pid_ = 0;
onChanged();
return this;
}
// optional bool success = 5;
private boolean success_ ;
/**
* optional bool success = 5;
*/
public boolean hasSuccess() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional bool success = 5;
*/
public boolean getSuccess() {
return success_;
}
/**
* optional bool success = 5;
*/
public Builder setSuccess(boolean value) {
bitField0_ |= 0x00000010;
success_ = value;
onChanged();
return this;
}
/**
* optional bool success = 5;
*/
public Builder clearSuccess() {
bitField0_ = (bitField0_ & ~0x00000010);
success_ = false;
onChanged();
return this;
}
// optional uint32 negative_response_code = 6;
private int negativeResponseCode_ ;
/**
* optional uint32 negative_response_code = 6;
*/
public boolean hasNegativeResponseCode() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional uint32 negative_response_code = 6;
*/
public int getNegativeResponseCode() {
return negativeResponseCode_;
}
/**
* optional uint32 negative_response_code = 6;
*/
public Builder setNegativeResponseCode(int value) {
bitField0_ |= 0x00000020;
negativeResponseCode_ = value;
onChanged();
return this;
}
/**
* optional uint32 negative_response_code = 6;
*/
public Builder clearNegativeResponseCode() {
bitField0_ = (bitField0_ & ~0x00000020);
negativeResponseCode_ = 0;
onChanged();
return this;
}
// optional bytes payload = 7;
private com.google.protobuf.ByteString payload_ = com.google.protobuf.ByteString.EMPTY;
/**
* optional bytes payload = 7;
*
*
* TODO we are capping this at 8 bytes for now - need to change when we
* support multi-frame responses
*
*/
public boolean hasPayload() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
* optional bytes payload = 7;
*
*
* TODO we are capping this at 8 bytes for now - need to change when we
* support multi-frame responses
*
*/
public com.google.protobuf.ByteString getPayload() {
return payload_;
}
/**
* optional bytes payload = 7;
*
*
* TODO we are capping this at 8 bytes for now - need to change when we
* support multi-frame responses
*
*/
public Builder setPayload(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000040;
payload_ = value;
onChanged();
return this;
}
/**
* optional bytes payload = 7;
*
*
* TODO we are capping this at 8 bytes for now - need to change when we
* support multi-frame responses
*
*/
public Builder clearPayload() {
bitField0_ = (bitField0_ & ~0x00000040);
payload_ = getDefaultInstance().getPayload();
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:openxc.DiagnosticMessage)
}
static {
defaultInstance = new DiagnosticMessage(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:openxc.DiagnosticMessage)
}
public interface TranslatedMessageOrBuilder
extends com.google.protobuf.MessageOrBuilder {
// optional .openxc.TranslatedMessage.Type type = 1;
/**
* optional .openxc.TranslatedMessage.Type type = 1;
*/
boolean hasType();
/**
* optional .openxc.TranslatedMessage.Type type = 1;
*/
com.openxc.BinaryMessages.TranslatedMessage.Type getType();
// optional string name = 2;
/**
* optional string name = 2;
*/
boolean hasName();
/**
* optional string name = 2;
*/
java.lang.String getName();
/**
* optional string name = 2;
*/
com.google.protobuf.ByteString
getNameBytes();
// optional string string_value = 3;
/**
* optional string string_value = 3;
*/
boolean hasStringValue();
/**
* optional string string_value = 3;
*/
java.lang.String getStringValue();
/**
* optional string string_value = 3;
*/
com.google.protobuf.ByteString
getStringValueBytes();
// optional double numeric_value = 4;
/**
* optional double numeric_value = 4;
*/
boolean hasNumericValue();
/**
* optional double numeric_value = 4;
*/
double getNumericValue();
// optional bool boolean_value = 5;
/**
* optional bool boolean_value = 5;
*/
boolean hasBooleanValue();
/**
* optional bool boolean_value = 5;
*/
boolean getBooleanValue();
// optional string string_event = 6;
/**
* optional string string_event = 6;
*/
boolean hasStringEvent();
/**
* optional string string_event = 6;
*/
java.lang.String getStringEvent();
/**
* optional string string_event = 6;
*/
com.google.protobuf.ByteString
getStringEventBytes();
// optional double numeric_event = 7;
/**
* optional double numeric_event = 7;
*/
boolean hasNumericEvent();
/**
* optional double numeric_event = 7;
*/
double getNumericEvent();
// optional bool boolean_event = 8;
/**
* optional bool boolean_event = 8;
*/
boolean hasBooleanEvent();
/**
* optional bool boolean_event = 8;
*/
boolean getBooleanEvent();
}
/**
* Protobuf type {@code openxc.TranslatedMessage}
*/
public static final class TranslatedMessage extends
com.google.protobuf.GeneratedMessage
implements TranslatedMessageOrBuilder {
// Use TranslatedMessage.newBuilder() to construct.
private TranslatedMessage(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private TranslatedMessage(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final TranslatedMessage defaultInstance;
public static TranslatedMessage getDefaultInstance() {
return defaultInstance;
}
public TranslatedMessage getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private TranslatedMessage(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
default: {
if (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 8: {
int rawValue = input.readEnum();
com.openxc.BinaryMessages.TranslatedMessage.Type value = com.openxc.BinaryMessages.TranslatedMessage.Type.valueOf(rawValue);
if (value == null) {
unknownFields.mergeVarintField(1, rawValue);
} else {
bitField0_ |= 0x00000001;
type_ = value;
}
break;
}
case 18: {
bitField0_ |= 0x00000002;
name_ = input.readBytes();
break;
}
case 26: {
bitField0_ |= 0x00000004;
stringValue_ = input.readBytes();
break;
}
case 33: {
bitField0_ |= 0x00000008;
numericValue_ = input.readDouble();
break;
}
case 40: {
bitField0_ |= 0x00000010;
booleanValue_ = input.readBool();
break;
}
case 50: {
bitField0_ |= 0x00000020;
stringEvent_ = input.readBytes();
break;
}
case 57: {
bitField0_ |= 0x00000040;
numericEvent_ = input.readDouble();
break;
}
case 64: {
bitField0_ |= 0x00000080;
booleanEvent_ = input.readBool();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.openxc.BinaryMessages.internal_static_openxc_TranslatedMessage_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.openxc.BinaryMessages.internal_static_openxc_TranslatedMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.openxc.BinaryMessages.TranslatedMessage.class, com.openxc.BinaryMessages.TranslatedMessage.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public TranslatedMessage parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new TranslatedMessage(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
/**
* Protobuf enum {@code openxc.TranslatedMessage.Type}
*/
public enum Type
implements com.google.protobuf.ProtocolMessageEnum {
/**
* STRING = 1;
*/
STRING(0, 1),
/**
* NUM = 2;
*/
NUM(1, 2),
/**
* BOOL = 3;
*/
BOOL(2, 3),
/**
* EVENTED_STRING = 4;
*/
EVENTED_STRING(3, 4),
/**
* EVENTED_NUM = 5;
*/
EVENTED_NUM(4, 5),
/**
* EVENTED_BOOL = 6;
*/
EVENTED_BOOL(5, 6),
;
/**
* STRING = 1;
*/
public static final int STRING_VALUE = 1;
/**
* NUM = 2;
*/
public static final int NUM_VALUE = 2;
/**
* BOOL = 3;
*/
public static final int BOOL_VALUE = 3;
/**
* EVENTED_STRING = 4;
*/
public static final int EVENTED_STRING_VALUE = 4;
/**
* EVENTED_NUM = 5;
*/
public static final int EVENTED_NUM_VALUE = 5;
/**
* EVENTED_BOOL = 6;
*/
public static final int EVENTED_BOOL_VALUE = 6;
public final int getNumber() { return value; }
public static Type valueOf(int value) {
switch (value) {
case 1: return STRING;
case 2: return NUM;
case 3: return BOOL;
case 4: return EVENTED_STRING;
case 5: return EVENTED_NUM;
case 6: return EVENTED_BOOL;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static com.google.protobuf.Internal.EnumLiteMap
internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public Type findValueByNumber(int number) {
return Type.valueOf(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(index);
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return com.openxc.BinaryMessages.TranslatedMessage.getDescriptor().getEnumTypes().get(0);
}
private static final Type[] VALUES = values();
public static Type valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
return VALUES[desc.getIndex()];
}
private final int index;
private final int value;
private Type(int index, int value) {
this.index = index;
this.value = value;
}
// @@protoc_insertion_point(enum_scope:openxc.TranslatedMessage.Type)
}
private int bitField0_;
// optional .openxc.TranslatedMessage.Type type = 1;
public static final int TYPE_FIELD_NUMBER = 1;
private com.openxc.BinaryMessages.TranslatedMessage.Type type_;
/**
* optional .openxc.TranslatedMessage.Type type = 1;
*/
public boolean hasType() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .openxc.TranslatedMessage.Type type = 1;
*/
public com.openxc.BinaryMessages.TranslatedMessage.Type getType() {
return type_;
}
// optional string name = 2;
public static final int NAME_FIELD_NUMBER = 2;
private java.lang.Object name_;
/**
* optional string name = 2;
*/
public boolean hasName() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string name = 2;
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
name_ = s;
}
return s;
}
}
/**
* optional string name = 2;
*/
public com.google.protobuf.ByteString
getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional string string_value = 3;
public static final int STRING_VALUE_FIELD_NUMBER = 3;
private java.lang.Object stringValue_;
/**
* optional string string_value = 3;
*/
public boolean hasStringValue() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional string string_value = 3;
*/
public java.lang.String getStringValue() {
java.lang.Object ref = stringValue_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
stringValue_ = s;
}
return s;
}
}
/**
* optional string string_value = 3;
*/
public com.google.protobuf.ByteString
getStringValueBytes() {
java.lang.Object ref = stringValue_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
stringValue_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional double numeric_value = 4;
public static final int NUMERIC_VALUE_FIELD_NUMBER = 4;
private double numericValue_;
/**
* optional double numeric_value = 4;
*/
public boolean hasNumericValue() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional double numeric_value = 4;
*/
public double getNumericValue() {
return numericValue_;
}
// optional bool boolean_value = 5;
public static final int BOOLEAN_VALUE_FIELD_NUMBER = 5;
private boolean booleanValue_;
/**
* optional bool boolean_value = 5;
*/
public boolean hasBooleanValue() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional bool boolean_value = 5;
*/
public boolean getBooleanValue() {
return booleanValue_;
}
// optional string string_event = 6;
public static final int STRING_EVENT_FIELD_NUMBER = 6;
private java.lang.Object stringEvent_;
/**
* optional string string_event = 6;
*/
public boolean hasStringEvent() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional string string_event = 6;
*/
public java.lang.String getStringEvent() {
java.lang.Object ref = stringEvent_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
stringEvent_ = s;
}
return s;
}
}
/**
* optional string string_event = 6;
*/
public com.google.protobuf.ByteString
getStringEventBytes() {
java.lang.Object ref = stringEvent_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
stringEvent_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
// optional double numeric_event = 7;
public static final int NUMERIC_EVENT_FIELD_NUMBER = 7;
private double numericEvent_;
/**
* optional double numeric_event = 7;
*/
public boolean hasNumericEvent() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
* optional double numeric_event = 7;
*/
public double getNumericEvent() {
return numericEvent_;
}
// optional bool boolean_event = 8;
public static final int BOOLEAN_EVENT_FIELD_NUMBER = 8;
private boolean booleanEvent_;
/**
* optional bool boolean_event = 8;
*/
public boolean hasBooleanEvent() {
return ((bitField0_ & 0x00000080) == 0x00000080);
}
/**
* optional bool boolean_event = 8;
*/
public boolean getBooleanEvent() {
return booleanEvent_;
}
private void initFields() {
type_ = com.openxc.BinaryMessages.TranslatedMessage.Type.STRING;
name_ = "";
stringValue_ = "";
numericValue_ = 0D;
booleanValue_ = false;
stringEvent_ = "";
numericEvent_ = 0D;
booleanEvent_ = false;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized != -1) return isInitialized == 1;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeEnum(1, type_.getNumber());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeBytes(2, getNameBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeBytes(3, getStringValueBytes());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeDouble(4, numericValue_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
output.writeBool(5, booleanValue_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
output.writeBytes(6, getStringEventBytes());
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
output.writeDouble(7, numericEvent_);
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
output.writeBool(8, booleanEvent_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, type_.getNumber());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(2, getNameBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(3, getStringValueBytes());
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeDoubleSize(4, numericValue_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(5, booleanValue_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(6, getStringEventBytes());
}
if (((bitField0_ & 0x00000040) == 0x00000040)) {
size += com.google.protobuf.CodedOutputStream
.computeDoubleSize(7, numericEvent_);
}
if (((bitField0_ & 0x00000080) == 0x00000080)) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(8, booleanEvent_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
public static com.openxc.BinaryMessages.TranslatedMessage parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.openxc.BinaryMessages.TranslatedMessage parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.openxc.BinaryMessages.TranslatedMessage parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.openxc.BinaryMessages.TranslatedMessage parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.openxc.BinaryMessages.TranslatedMessage parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static com.openxc.BinaryMessages.TranslatedMessage parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static com.openxc.BinaryMessages.TranslatedMessage parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static com.openxc.BinaryMessages.TranslatedMessage parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static com.openxc.BinaryMessages.TranslatedMessage parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static com.openxc.BinaryMessages.TranslatedMessage parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(com.openxc.BinaryMessages.TranslatedMessage prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code openxc.TranslatedMessage}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder
implements com.openxc.BinaryMessages.TranslatedMessageOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.openxc.BinaryMessages.internal_static_openxc_TranslatedMessage_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.openxc.BinaryMessages.internal_static_openxc_TranslatedMessage_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.openxc.BinaryMessages.TranslatedMessage.class, com.openxc.BinaryMessages.TranslatedMessage.Builder.class);
}
// Construct using com.openxc.BinaryMessages.TranslatedMessage.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
type_ = com.openxc.BinaryMessages.TranslatedMessage.Type.STRING;
bitField0_ = (bitField0_ & ~0x00000001);
name_ = "";
bitField0_ = (bitField0_ & ~0x00000002);
stringValue_ = "";
bitField0_ = (bitField0_ & ~0x00000004);
numericValue_ = 0D;
bitField0_ = (bitField0_ & ~0x00000008);
booleanValue_ = false;
bitField0_ = (bitField0_ & ~0x00000010);
stringEvent_ = "";
bitField0_ = (bitField0_ & ~0x00000020);
numericEvent_ = 0D;
bitField0_ = (bitField0_ & ~0x00000040);
booleanEvent_ = false;
bitField0_ = (bitField0_ & ~0x00000080);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.openxc.BinaryMessages.internal_static_openxc_TranslatedMessage_descriptor;
}
public com.openxc.BinaryMessages.TranslatedMessage getDefaultInstanceForType() {
return com.openxc.BinaryMessages.TranslatedMessage.getDefaultInstance();
}
public com.openxc.BinaryMessages.TranslatedMessage build() {
com.openxc.BinaryMessages.TranslatedMessage result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public com.openxc.BinaryMessages.TranslatedMessage buildPartial() {
com.openxc.BinaryMessages.TranslatedMessage result = new com.openxc.BinaryMessages.TranslatedMessage(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.type_ = type_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.name_ = name_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.stringValue_ = stringValue_;
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
result.numericValue_ = numericValue_;
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
result.booleanValue_ = booleanValue_;
if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
to_bitField0_ |= 0x00000020;
}
result.stringEvent_ = stringEvent_;
if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
to_bitField0_ |= 0x00000040;
}
result.numericEvent_ = numericEvent_;
if (((from_bitField0_ & 0x00000080) == 0x00000080)) {
to_bitField0_ |= 0x00000080;
}
result.booleanEvent_ = booleanEvent_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.openxc.BinaryMessages.TranslatedMessage) {
return mergeFrom((com.openxc.BinaryMessages.TranslatedMessage)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.openxc.BinaryMessages.TranslatedMessage other) {
if (other == com.openxc.BinaryMessages.TranslatedMessage.getDefaultInstance()) return this;
if (other.hasType()) {
setType(other.getType());
}
if (other.hasName()) {
bitField0_ |= 0x00000002;
name_ = other.name_;
onChanged();
}
if (other.hasStringValue()) {
bitField0_ |= 0x00000004;
stringValue_ = other.stringValue_;
onChanged();
}
if (other.hasNumericValue()) {
setNumericValue(other.getNumericValue());
}
if (other.hasBooleanValue()) {
setBooleanValue(other.getBooleanValue());
}
if (other.hasStringEvent()) {
bitField0_ |= 0x00000020;
stringEvent_ = other.stringEvent_;
onChanged();
}
if (other.hasNumericEvent()) {
setNumericEvent(other.getNumericEvent());
}
if (other.hasBooleanEvent()) {
setBooleanEvent(other.getBooleanEvent());
}
this.mergeUnknownFields(other.getUnknownFields());
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.openxc.BinaryMessages.TranslatedMessage parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.openxc.BinaryMessages.TranslatedMessage) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
// optional .openxc.TranslatedMessage.Type type = 1;
private com.openxc.BinaryMessages.TranslatedMessage.Type type_ = com.openxc.BinaryMessages.TranslatedMessage.Type.STRING;
/**
* optional .openxc.TranslatedMessage.Type type = 1;
*/
public boolean hasType() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional .openxc.TranslatedMessage.Type type = 1;
*/
public com.openxc.BinaryMessages.TranslatedMessage.Type getType() {
return type_;
}
/**
* optional .openxc.TranslatedMessage.Type type = 1;
*/
public Builder setType(com.openxc.BinaryMessages.TranslatedMessage.Type value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
type_ = value;
onChanged();
return this;
}
/**
* optional .openxc.TranslatedMessage.Type type = 1;
*/
public Builder clearType() {
bitField0_ = (bitField0_ & ~0x00000001);
type_ = com.openxc.BinaryMessages.TranslatedMessage.Type.STRING;
onChanged();
return this;
}
// optional string name = 2;
private java.lang.Object name_ = "";
/**
* optional string name = 2;
*/
public boolean hasName() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string name = 2;
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
name_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string name = 2;
*/
public com.google.protobuf.ByteString
getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string name = 2;
*/
public Builder setName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
name_ = value;
onChanged();
return this;
}
/**
* optional string name = 2;
*/
public Builder clearName() {
bitField0_ = (bitField0_ & ~0x00000002);
name_ = getDefaultInstance().getName();
onChanged();
return this;
}
/**
* optional string name = 2;
*/
public Builder setNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
name_ = value;
onChanged();
return this;
}
// optional string string_value = 3;
private java.lang.Object stringValue_ = "";
/**
* optional string string_value = 3;
*/
public boolean hasStringValue() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional string string_value = 3;
*/
public java.lang.String getStringValue() {
java.lang.Object ref = stringValue_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
stringValue_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string string_value = 3;
*/
public com.google.protobuf.ByteString
getStringValueBytes() {
java.lang.Object ref = stringValue_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
stringValue_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string string_value = 3;
*/
public Builder setStringValue(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
stringValue_ = value;
onChanged();
return this;
}
/**
* optional string string_value = 3;
*/
public Builder clearStringValue() {
bitField0_ = (bitField0_ & ~0x00000004);
stringValue_ = getDefaultInstance().getStringValue();
onChanged();
return this;
}
/**
* optional string string_value = 3;
*/
public Builder setStringValueBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
stringValue_ = value;
onChanged();
return this;
}
// optional double numeric_value = 4;
private double numericValue_ ;
/**
* optional double numeric_value = 4;
*/
public boolean hasNumericValue() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional double numeric_value = 4;
*/
public double getNumericValue() {
return numericValue_;
}
/**
* optional double numeric_value = 4;
*/
public Builder setNumericValue(double value) {
bitField0_ |= 0x00000008;
numericValue_ = value;
onChanged();
return this;
}
/**
* optional double numeric_value = 4;
*/
public Builder clearNumericValue() {
bitField0_ = (bitField0_ & ~0x00000008);
numericValue_ = 0D;
onChanged();
return this;
}
// optional bool boolean_value = 5;
private boolean booleanValue_ ;
/**
* optional bool boolean_value = 5;
*/
public boolean hasBooleanValue() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional bool boolean_value = 5;
*/
public boolean getBooleanValue() {
return booleanValue_;
}
/**
* optional bool boolean_value = 5;
*/
public Builder setBooleanValue(boolean value) {
bitField0_ |= 0x00000010;
booleanValue_ = value;
onChanged();
return this;
}
/**
* optional bool boolean_value = 5;
*/
public Builder clearBooleanValue() {
bitField0_ = (bitField0_ & ~0x00000010);
booleanValue_ = false;
onChanged();
return this;
}
// optional string string_event = 6;
private java.lang.Object stringEvent_ = "";
/**
* optional string string_event = 6;
*/
public boolean hasStringEvent() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional string string_event = 6;
*/
public java.lang.String getStringEvent() {
java.lang.Object ref = stringEvent_;
if (!(ref instanceof java.lang.String)) {
java.lang.String s = ((com.google.protobuf.ByteString) ref)
.toStringUtf8();
stringEvent_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string string_event = 6;
*/
public com.google.protobuf.ByteString
getStringEventBytes() {
java.lang.Object ref = stringEvent_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
stringEvent_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string string_event = 6;
*/
public Builder setStringEvent(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000020;
stringEvent_ = value;
onChanged();
return this;
}
/**
* optional string string_event = 6;
*/
public Builder clearStringEvent() {
bitField0_ = (bitField0_ & ~0x00000020);
stringEvent_ = getDefaultInstance().getStringEvent();
onChanged();
return this;
}
/**
* optional string string_event = 6;
*/
public Builder setStringEventBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000020;
stringEvent_ = value;
onChanged();
return this;
}
// optional double numeric_event = 7;
private double numericEvent_ ;
/**
* optional double numeric_event = 7;
*/
public boolean hasNumericEvent() {
return ((bitField0_ & 0x00000040) == 0x00000040);
}
/**
* optional double numeric_event = 7;
*/
public double getNumericEvent() {
return numericEvent_;
}
/**
* optional double numeric_event = 7;
*/
public Builder setNumericEvent(double value) {
bitField0_ |= 0x00000040;
numericEvent_ = value;
onChanged();
return this;
}
/**
* optional double numeric_event = 7;
*/
public Builder clearNumericEvent() {
bitField0_ = (bitField0_ & ~0x00000040);
numericEvent_ = 0D;
onChanged();
return this;
}
// optional bool boolean_event = 8;
private boolean booleanEvent_ ;
/**
* optional bool boolean_event = 8;
*/
public boolean hasBooleanEvent() {
return ((bitField0_ & 0x00000080) == 0x00000080);
}
/**
* optional bool boolean_event = 8;
*/
public boolean getBooleanEvent() {
return booleanEvent_;
}
/**
* optional bool boolean_event = 8;
*/
public Builder setBooleanEvent(boolean value) {
bitField0_ |= 0x00000080;
booleanEvent_ = value;
onChanged();
return this;
}
/**
* optional bool boolean_event = 8;
*/
public Builder clearBooleanEvent() {
bitField0_ = (bitField0_ & ~0x00000080);
booleanEvent_ = false;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:openxc.TranslatedMessage)
}
static {
defaultInstance = new TranslatedMessage(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:openxc.TranslatedMessage)
}
private static com.google.protobuf.Descriptors.Descriptor
internal_static_openxc_VehicleMessage_descriptor;
private static
com.google.protobuf.GeneratedMessage.FieldAccessorTable
internal_static_openxc_VehicleMessage_fieldAccessorTable;
private static com.google.protobuf.Descriptors.Descriptor
internal_static_openxc_RawMessage_descriptor;
private static
com.google.protobuf.GeneratedMessage.FieldAccessorTable
internal_static_openxc_RawMessage_fieldAccessorTable;
private static com.google.protobuf.Descriptors.Descriptor
internal_static_openxc_DiagnosticMessage_descriptor;
private static
com.google.protobuf.GeneratedMessage.FieldAccessorTable
internal_static_openxc_DiagnosticMessage_fieldAccessorTable;
private static com.google.protobuf.Descriptors.Descriptor
internal_static_openxc_TranslatedMessage_descriptor;
private static
com.google.protobuf.GeneratedMessage.FieldAccessorTable
internal_static_openxc_TranslatedMessage_fieldAccessorTable;
public static com.google.protobuf.Descriptors.FileDescriptor
getDescriptor() {
return descriptor;
}
private static com.google.protobuf.Descriptors.FileDescriptor
descriptor;
static {
java.lang.String[] descriptorData = {
"\n\014openxc.proto\022\006openxc\"\274\001\n\016VehicleMessag" +
"e\022)\n\004type\030\001 \001(\0162\033.openxc.VehicleMessage." +
"Type\022\'\n\013raw_message\030\002 \001(\0132\022.openxc.RawMe" +
"ssage\0225\n\022translated_message\030\003 \001(\0132\031.open" +
"xc.TranslatedMessage\"\037\n\004Type\022\007\n\003RAW\020\001\022\016\n" +
"\nTRANSLATED\020\002\";\n\nRawMessage\022\013\n\003bus\030\001 \001(\005" +
"\022\022\n\nmessage_id\030\002 \001(\r\022\014\n\004data\030\003 \001(\004\"\221\001\n\021D" +
"iagnosticMessage\022\013\n\003bus\030\001 \001(\005\022\022\n\nmessage" +
"_id\030\002 \001(\r\022\014\n\004mode\030\003 \001(\r\022\013\n\003pid\030\004 \001(\r\022\017\n\007" +
"success\030\005 \001(\010\022\036\n\026negative_response_code\030",
"\006 \001(\r\022\017\n\007payload\030\007 \001(\014\"\265\002\n\021TranslatedMes" +
"sage\022,\n\004type\030\001 \001(\0162\036.openxc.TranslatedMe" +
"ssage.Type\022\014\n\004name\030\002 \001(\t\022\024\n\014string_value" +
"\030\003 \001(\t\022\025\n\rnumeric_value\030\004 \001(\001\022\025\n\rboolean" +
"_value\030\005 \001(\010\022\024\n\014string_event\030\006 \001(\t\022\025\n\rnu" +
"meric_event\030\007 \001(\001\022\025\n\rboolean_event\030\010 \001(\010" +
"\"\\\n\004Type\022\n\n\006STRING\020\001\022\007\n\003NUM\020\002\022\010\n\004BOOL\020\003\022" +
"\022\n\016EVENTED_STRING\020\004\022\017\n\013EVENTED_NUM\020\005\022\020\n\014" +
"EVENTED_BOOL\020\006B\034\n\ncom.openxcB\016BinaryMess" +
"ages"
};
com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() {
public com.google.protobuf.ExtensionRegistry assignDescriptors(
com.google.protobuf.Descriptors.FileDescriptor root) {
descriptor = root;
internal_static_openxc_VehicleMessage_descriptor =
getDescriptor().getMessageTypes().get(0);
internal_static_openxc_VehicleMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_openxc_VehicleMessage_descriptor,
new java.lang.String[] { "Type", "RawMessage", "TranslatedMessage", });
internal_static_openxc_RawMessage_descriptor =
getDescriptor().getMessageTypes().get(1);
internal_static_openxc_RawMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_openxc_RawMessage_descriptor,
new java.lang.String[] { "Bus", "MessageId", "Data", });
internal_static_openxc_DiagnosticMessage_descriptor =
getDescriptor().getMessageTypes().get(2);
internal_static_openxc_DiagnosticMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_openxc_DiagnosticMessage_descriptor,
new java.lang.String[] { "Bus", "MessageId", "Mode", "Pid", "Success", "NegativeResponseCode", "Payload", });
internal_static_openxc_TranslatedMessage_descriptor =
getDescriptor().getMessageTypes().get(3);
internal_static_openxc_TranslatedMessage_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_openxc_TranslatedMessage_descriptor,
new java.lang.String[] { "Type", "Name", "StringValue", "NumericValue", "BooleanValue", "StringEvent", "NumericEvent", "BooleanEvent", });
return null;
}
};
com.google.protobuf.Descriptors.FileDescriptor
.internalBuildGeneratedFileFrom(descriptorData,
new com.google.protobuf.Descriptors.FileDescriptor[] {
}, assigner);
}
// @@protoc_insertion_point(outer_class_scope)
}