org.hyperledger.fabric.protos.peer.lifecycle.StateData Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: peer/lifecycle/db.proto
// Protobuf Java Version: 4.28.2
package org.hyperledger.fabric.protos.peer.lifecycle;
/**
*
* StateData encodes a particular field of a datatype
*
*
* Protobuf type {@code lifecycle.StateData}
*/
public final class StateData extends
com.google.protobuf.GeneratedMessage implements
// @@protoc_insertion_point(message_implements:lifecycle.StateData)
StateDataOrBuilder {
private static final long serialVersionUID = 0L;
static {
com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion(
com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC,
/* major= */ 4,
/* minor= */ 28,
/* patch= */ 2,
/* suffix= */ "",
StateData.class.getName());
}
// Use StateData.newBuilder() to construct.
private StateData(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
}
private StateData() {
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.hyperledger.fabric.protos.peer.lifecycle.DbProto.internal_static_lifecycle_StateData_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.hyperledger.fabric.protos.peer.lifecycle.DbProto.internal_static_lifecycle_StateData_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.hyperledger.fabric.protos.peer.lifecycle.StateData.class, org.hyperledger.fabric.protos.peer.lifecycle.StateData.Builder.class);
}
private int typeCase_ = 0;
@SuppressWarnings("serial")
private java.lang.Object type_;
public enum TypeCase
implements com.google.protobuf.Internal.EnumLite,
com.google.protobuf.AbstractMessage.InternalOneOfEnum {
INT64(1),
BYTES(2),
STRING(3),
TYPE_NOT_SET(0);
private final int value;
private TypeCase(int value) {
this.value = value;
}
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static TypeCase valueOf(int value) {
return forNumber(value);
}
public static TypeCase forNumber(int value) {
switch (value) {
case 1: return INT64;
case 2: return BYTES;
case 3: return STRING;
case 0: return TYPE_NOT_SET;
default: return null;
}
}
public int getNumber() {
return this.value;
}
};
public TypeCase
getTypeCase() {
return TypeCase.forNumber(
typeCase_);
}
public static final int INT64_FIELD_NUMBER = 1;
/**
* int64 Int64 = 1 [json_name = "Int64"];
* @return Whether the int64 field is set.
*/
@java.lang.Override
public boolean hasInt64() {
return typeCase_ == 1;
}
/**
* int64 Int64 = 1 [json_name = "Int64"];
* @return The int64.
*/
@java.lang.Override
public long getInt64() {
if (typeCase_ == 1) {
return (java.lang.Long) type_;
}
return 0L;
}
public static final int BYTES_FIELD_NUMBER = 2;
/**
* bytes Bytes = 2 [json_name = "Bytes"];
* @return Whether the bytes field is set.
*/
@java.lang.Override
public boolean hasBytes() {
return typeCase_ == 2;
}
/**
* bytes Bytes = 2 [json_name = "Bytes"];
* @return The bytes.
*/
@java.lang.Override
public com.google.protobuf.ByteString getBytes() {
if (typeCase_ == 2) {
return (com.google.protobuf.ByteString) type_;
}
return com.google.protobuf.ByteString.EMPTY;
}
public static final int STRING_FIELD_NUMBER = 3;
/**
* string String = 3 [json_name = "String"];
* @return Whether the string field is set.
*/
public boolean hasString() {
return typeCase_ == 3;
}
/**
* string String = 3 [json_name = "String"];
* @return The string.
*/
public java.lang.String getString() {
java.lang.Object ref = "";
if (typeCase_ == 3) {
ref = type_;
}
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 (typeCase_ == 3) {
type_ = s;
}
return s;
}
}
/**
* string String = 3 [json_name = "String"];
* @return The bytes for string.
*/
public com.google.protobuf.ByteString
getStringBytes() {
java.lang.Object ref = "";
if (typeCase_ == 3) {
ref = type_;
}
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
if (typeCase_ == 3) {
type_ = b;
}
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (typeCase_ == 1) {
output.writeInt64(
1, (long)((java.lang.Long) type_));
}
if (typeCase_ == 2) {
output.writeBytes(
2, (com.google.protobuf.ByteString) type_);
}
if (typeCase_ == 3) {
com.google.protobuf.GeneratedMessage.writeString(output, 3, type_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (typeCase_ == 1) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(
1, (long)((java.lang.Long) type_));
}
if (typeCase_ == 2) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(
2, (com.google.protobuf.ByteString) type_);
}
if (typeCase_ == 3) {
size += com.google.protobuf.GeneratedMessage.computeStringSize(3, type_);
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.hyperledger.fabric.protos.peer.lifecycle.StateData)) {
return super.equals(obj);
}
org.hyperledger.fabric.protos.peer.lifecycle.StateData other = (org.hyperledger.fabric.protos.peer.lifecycle.StateData) obj;
if (!getTypeCase().equals(other.getTypeCase())) return false;
switch (typeCase_) {
case 1:
if (getInt64()
!= other.getInt64()) return false;
break;
case 2:
if (!getBytes()
.equals(other.getBytes())) return false;
break;
case 3:
if (!getString()
.equals(other.getString())) return false;
break;
case 0:
default:
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
switch (typeCase_) {
case 1:
hash = (37 * hash) + INT64_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getInt64());
break;
case 2:
hash = (37 * hash) + BYTES_FIELD_NUMBER;
hash = (53 * hash) + getBytes().hashCode();
break;
case 3:
hash = (37 * hash) + STRING_FIELD_NUMBER;
hash = (53 * hash) + getString().hashCode();
break;
case 0:
default:
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.hyperledger.fabric.protos.peer.lifecycle.StateData parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.peer.lifecycle.StateData parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.hyperledger.fabric.protos.peer.lifecycle.StateData parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.peer.lifecycle.StateData parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.hyperledger.fabric.protos.peer.lifecycle.StateData parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.peer.lifecycle.StateData parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.hyperledger.fabric.protos.peer.lifecycle.StateData parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.peer.lifecycle.StateData parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static org.hyperledger.fabric.protos.peer.lifecycle.StateData parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseDelimitedWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.peer.lifecycle.StateData parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static org.hyperledger.fabric.protos.peer.lifecycle.StateData parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.peer.lifecycle.StateData parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(org.hyperledger.fabric.protos.peer.lifecycle.StateData prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* StateData encodes a particular field of a datatype
*
*
* Protobuf type {@code lifecycle.StateData}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder implements
// @@protoc_insertion_point(builder_implements:lifecycle.StateData)
org.hyperledger.fabric.protos.peer.lifecycle.StateDataOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.hyperledger.fabric.protos.peer.lifecycle.DbProto.internal_static_lifecycle_StateData_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.hyperledger.fabric.protos.peer.lifecycle.DbProto.internal_static_lifecycle_StateData_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.hyperledger.fabric.protos.peer.lifecycle.StateData.class, org.hyperledger.fabric.protos.peer.lifecycle.StateData.Builder.class);
}
// Construct using org.hyperledger.fabric.protos.peer.lifecycle.StateData.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
typeCase_ = 0;
type_ = null;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.hyperledger.fabric.protos.peer.lifecycle.DbProto.internal_static_lifecycle_StateData_descriptor;
}
@java.lang.Override
public org.hyperledger.fabric.protos.peer.lifecycle.StateData getDefaultInstanceForType() {
return org.hyperledger.fabric.protos.peer.lifecycle.StateData.getDefaultInstance();
}
@java.lang.Override
public org.hyperledger.fabric.protos.peer.lifecycle.StateData build() {
org.hyperledger.fabric.protos.peer.lifecycle.StateData result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public org.hyperledger.fabric.protos.peer.lifecycle.StateData buildPartial() {
org.hyperledger.fabric.protos.peer.lifecycle.StateData result = new org.hyperledger.fabric.protos.peer.lifecycle.StateData(this);
if (bitField0_ != 0) { buildPartial0(result); }
buildPartialOneofs(result);
onBuilt();
return result;
}
private void buildPartial0(org.hyperledger.fabric.protos.peer.lifecycle.StateData result) {
int from_bitField0_ = bitField0_;
}
private void buildPartialOneofs(org.hyperledger.fabric.protos.peer.lifecycle.StateData result) {
result.typeCase_ = typeCase_;
result.type_ = this.type_;
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.hyperledger.fabric.protos.peer.lifecycle.StateData) {
return mergeFrom((org.hyperledger.fabric.protos.peer.lifecycle.StateData)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.hyperledger.fabric.protos.peer.lifecycle.StateData other) {
if (other == org.hyperledger.fabric.protos.peer.lifecycle.StateData.getDefaultInstance()) return this;
switch (other.getTypeCase()) {
case INT64: {
setInt64(other.getInt64());
break;
}
case BYTES: {
setBytes(other.getBytes());
break;
}
case STRING: {
typeCase_ = 3;
type_ = other.type_;
onChanged();
break;
}
case TYPE_NOT_SET: {
break;
}
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 8: {
type_ = input.readInt64();
typeCase_ = 1;
break;
} // case 8
case 18: {
type_ = input.readBytes();
typeCase_ = 2;
break;
} // case 18
case 26: {
java.lang.String s = input.readStringRequireUtf8();
typeCase_ = 3;
type_ = s;
break;
} // case 26
default: {
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int typeCase_ = 0;
private java.lang.Object type_;
public TypeCase
getTypeCase() {
return TypeCase.forNumber(
typeCase_);
}
public Builder clearType() {
typeCase_ = 0;
type_ = null;
onChanged();
return this;
}
private int bitField0_;
/**
* int64 Int64 = 1 [json_name = "Int64"];
* @return Whether the int64 field is set.
*/
public boolean hasInt64() {
return typeCase_ == 1;
}
/**
* int64 Int64 = 1 [json_name = "Int64"];
* @return The int64.
*/
public long getInt64() {
if (typeCase_ == 1) {
return (java.lang.Long) type_;
}
return 0L;
}
/**
* int64 Int64 = 1 [json_name = "Int64"];
* @param value The int64 to set.
* @return This builder for chaining.
*/
public Builder setInt64(long value) {
typeCase_ = 1;
type_ = value;
onChanged();
return this;
}
/**
* int64 Int64 = 1 [json_name = "Int64"];
* @return This builder for chaining.
*/
public Builder clearInt64() {
if (typeCase_ == 1) {
typeCase_ = 0;
type_ = null;
onChanged();
}
return this;
}
/**
* bytes Bytes = 2 [json_name = "Bytes"];
* @return Whether the bytes field is set.
*/
public boolean hasBytes() {
return typeCase_ == 2;
}
/**
* bytes Bytes = 2 [json_name = "Bytes"];
* @return The bytes.
*/
public com.google.protobuf.ByteString getBytes() {
if (typeCase_ == 2) {
return (com.google.protobuf.ByteString) type_;
}
return com.google.protobuf.ByteString.EMPTY;
}
/**
* bytes Bytes = 2 [json_name = "Bytes"];
* @param value The bytes to set.
* @return This builder for chaining.
*/
public Builder setBytes(com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
typeCase_ = 2;
type_ = value;
onChanged();
return this;
}
/**
* bytes Bytes = 2 [json_name = "Bytes"];
* @return This builder for chaining.
*/
public Builder clearBytes() {
if (typeCase_ == 2) {
typeCase_ = 0;
type_ = null;
onChanged();
}
return this;
}
/**
* string String = 3 [json_name = "String"];
* @return Whether the string field is set.
*/
@java.lang.Override
public boolean hasString() {
return typeCase_ == 3;
}
/**
* string String = 3 [json_name = "String"];
* @return The string.
*/
@java.lang.Override
public java.lang.String getString() {
java.lang.Object ref = "";
if (typeCase_ == 3) {
ref = type_;
}
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (typeCase_ == 3) {
type_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string String = 3 [json_name = "String"];
* @return The bytes for string.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getStringBytes() {
java.lang.Object ref = "";
if (typeCase_ == 3) {
ref = type_;
}
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
if (typeCase_ == 3) {
type_ = b;
}
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string String = 3 [json_name = "String"];
* @param value The string to set.
* @return This builder for chaining.
*/
public Builder setString(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
typeCase_ = 3;
type_ = value;
onChanged();
return this;
}
/**
* string String = 3 [json_name = "String"];
* @return This builder for chaining.
*/
public Builder clearString() {
if (typeCase_ == 3) {
typeCase_ = 0;
type_ = null;
onChanged();
}
return this;
}
/**
* string String = 3 [json_name = "String"];
* @param value The bytes for string to set.
* @return This builder for chaining.
*/
public Builder setStringBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
typeCase_ = 3;
type_ = value;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:lifecycle.StateData)
}
// @@protoc_insertion_point(class_scope:lifecycle.StateData)
private static final org.hyperledger.fabric.protos.peer.lifecycle.StateData DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new org.hyperledger.fabric.protos.peer.lifecycle.StateData();
}
public static org.hyperledger.fabric.protos.peer.lifecycle.StateData getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public StateData parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public org.hyperledger.fabric.protos.peer.lifecycle.StateData getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy