org.hyperledger.fabric.protos.peer.CollectionConfig Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: peer/collection.proto
// Protobuf Java Version: 4.28.2
package org.hyperledger.fabric.protos.peer;
/**
*
* CollectionConfig defines the configuration of a collection object;
* it currently contains a single, static type.
* Dynamic collections are deferred.
*
*
* Protobuf type {@code protos.CollectionConfig}
*/
public final class CollectionConfig extends
com.google.protobuf.GeneratedMessage implements
// @@protoc_insertion_point(message_implements:protos.CollectionConfig)
CollectionConfigOrBuilder {
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= */ "",
CollectionConfig.class.getName());
}
// Use CollectionConfig.newBuilder() to construct.
private CollectionConfig(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
}
private CollectionConfig() {
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.hyperledger.fabric.protos.peer.CollectionProto.internal_static_protos_CollectionConfig_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.hyperledger.fabric.protos.peer.CollectionProto.internal_static_protos_CollectionConfig_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.hyperledger.fabric.protos.peer.CollectionConfig.class, org.hyperledger.fabric.protos.peer.CollectionConfig.Builder.class);
}
private int payloadCase_ = 0;
@SuppressWarnings("serial")
private java.lang.Object payload_;
public enum PayloadCase
implements com.google.protobuf.Internal.EnumLite,
com.google.protobuf.AbstractMessage.InternalOneOfEnum {
STATIC_COLLECTION_CONFIG(1),
PAYLOAD_NOT_SET(0);
private final int value;
private PayloadCase(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 PayloadCase valueOf(int value) {
return forNumber(value);
}
public static PayloadCase forNumber(int value) {
switch (value) {
case 1: return STATIC_COLLECTION_CONFIG;
case 0: return PAYLOAD_NOT_SET;
default: return null;
}
}
public int getNumber() {
return this.value;
}
};
public PayloadCase
getPayloadCase() {
return PayloadCase.forNumber(
payloadCase_);
}
public static final int STATIC_COLLECTION_CONFIG_FIELD_NUMBER = 1;
/**
* .protos.StaticCollectionConfig static_collection_config = 1 [json_name = "staticCollectionConfig"];
* @return Whether the staticCollectionConfig field is set.
*/
@java.lang.Override
public boolean hasStaticCollectionConfig() {
return payloadCase_ == 1;
}
/**
* .protos.StaticCollectionConfig static_collection_config = 1 [json_name = "staticCollectionConfig"];
* @return The staticCollectionConfig.
*/
@java.lang.Override
public org.hyperledger.fabric.protos.peer.StaticCollectionConfig getStaticCollectionConfig() {
if (payloadCase_ == 1) {
return (org.hyperledger.fabric.protos.peer.StaticCollectionConfig) payload_;
}
return org.hyperledger.fabric.protos.peer.StaticCollectionConfig.getDefaultInstance();
}
/**
* .protos.StaticCollectionConfig static_collection_config = 1 [json_name = "staticCollectionConfig"];
*/
@java.lang.Override
public org.hyperledger.fabric.protos.peer.StaticCollectionConfigOrBuilder getStaticCollectionConfigOrBuilder() {
if (payloadCase_ == 1) {
return (org.hyperledger.fabric.protos.peer.StaticCollectionConfig) payload_;
}
return org.hyperledger.fabric.protos.peer.StaticCollectionConfig.getDefaultInstance();
}
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 (payloadCase_ == 1) {
output.writeMessage(1, (org.hyperledger.fabric.protos.peer.StaticCollectionConfig) payload_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (payloadCase_ == 1) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, (org.hyperledger.fabric.protos.peer.StaticCollectionConfig) payload_);
}
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.CollectionConfig)) {
return super.equals(obj);
}
org.hyperledger.fabric.protos.peer.CollectionConfig other = (org.hyperledger.fabric.protos.peer.CollectionConfig) obj;
if (!getPayloadCase().equals(other.getPayloadCase())) return false;
switch (payloadCase_) {
case 1:
if (!getStaticCollectionConfig()
.equals(other.getStaticCollectionConfig())) 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 (payloadCase_) {
case 1:
hash = (37 * hash) + STATIC_COLLECTION_CONFIG_FIELD_NUMBER;
hash = (53 * hash) + getStaticCollectionConfig().hashCode();
break;
case 0:
default:
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.hyperledger.fabric.protos.peer.CollectionConfig parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.peer.CollectionConfig 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.CollectionConfig parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.peer.CollectionConfig 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.CollectionConfig parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.hyperledger.fabric.protos.peer.CollectionConfig 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.CollectionConfig parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.peer.CollectionConfig 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.CollectionConfig parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseDelimitedWithIOException(PARSER, input);
}
public static org.hyperledger.fabric.protos.peer.CollectionConfig 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.CollectionConfig 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.CollectionConfig 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.CollectionConfig 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;
}
/**
*
* CollectionConfig defines the configuration of a collection object;
* it currently contains a single, static type.
* Dynamic collections are deferred.
*
*
* Protobuf type {@code protos.CollectionConfig}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder implements
// @@protoc_insertion_point(builder_implements:protos.CollectionConfig)
org.hyperledger.fabric.protos.peer.CollectionConfigOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.hyperledger.fabric.protos.peer.CollectionProto.internal_static_protos_CollectionConfig_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.hyperledger.fabric.protos.peer.CollectionProto.internal_static_protos_CollectionConfig_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.hyperledger.fabric.protos.peer.CollectionConfig.class, org.hyperledger.fabric.protos.peer.CollectionConfig.Builder.class);
}
// Construct using org.hyperledger.fabric.protos.peer.CollectionConfig.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
if (staticCollectionConfigBuilder_ != null) {
staticCollectionConfigBuilder_.clear();
}
payloadCase_ = 0;
payload_ = null;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.hyperledger.fabric.protos.peer.CollectionProto.internal_static_protos_CollectionConfig_descriptor;
}
@java.lang.Override
public org.hyperledger.fabric.protos.peer.CollectionConfig getDefaultInstanceForType() {
return org.hyperledger.fabric.protos.peer.CollectionConfig.getDefaultInstance();
}
@java.lang.Override
public org.hyperledger.fabric.protos.peer.CollectionConfig build() {
org.hyperledger.fabric.protos.peer.CollectionConfig result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public org.hyperledger.fabric.protos.peer.CollectionConfig buildPartial() {
org.hyperledger.fabric.protos.peer.CollectionConfig result = new org.hyperledger.fabric.protos.peer.CollectionConfig(this);
if (bitField0_ != 0) { buildPartial0(result); }
buildPartialOneofs(result);
onBuilt();
return result;
}
private void buildPartial0(org.hyperledger.fabric.protos.peer.CollectionConfig result) {
int from_bitField0_ = bitField0_;
}
private void buildPartialOneofs(org.hyperledger.fabric.protos.peer.CollectionConfig result) {
result.payloadCase_ = payloadCase_;
result.payload_ = this.payload_;
if (payloadCase_ == 1 &&
staticCollectionConfigBuilder_ != null) {
result.payload_ = staticCollectionConfigBuilder_.build();
}
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.hyperledger.fabric.protos.peer.CollectionConfig) {
return mergeFrom((org.hyperledger.fabric.protos.peer.CollectionConfig)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.hyperledger.fabric.protos.peer.CollectionConfig other) {
if (other == org.hyperledger.fabric.protos.peer.CollectionConfig.getDefaultInstance()) return this;
switch (other.getPayloadCase()) {
case STATIC_COLLECTION_CONFIG: {
mergeStaticCollectionConfig(other.getStaticCollectionConfig());
break;
}
case PAYLOAD_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 10: {
input.readMessage(
getStaticCollectionConfigFieldBuilder().getBuilder(),
extensionRegistry);
payloadCase_ = 1;
break;
} // case 10
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 payloadCase_ = 0;
private java.lang.Object payload_;
public PayloadCase
getPayloadCase() {
return PayloadCase.forNumber(
payloadCase_);
}
public Builder clearPayload() {
payloadCase_ = 0;
payload_ = null;
onChanged();
return this;
}
private int bitField0_;
private com.google.protobuf.SingleFieldBuilder<
org.hyperledger.fabric.protos.peer.StaticCollectionConfig, org.hyperledger.fabric.protos.peer.StaticCollectionConfig.Builder, org.hyperledger.fabric.protos.peer.StaticCollectionConfigOrBuilder> staticCollectionConfigBuilder_;
/**
* .protos.StaticCollectionConfig static_collection_config = 1 [json_name = "staticCollectionConfig"];
* @return Whether the staticCollectionConfig field is set.
*/
@java.lang.Override
public boolean hasStaticCollectionConfig() {
return payloadCase_ == 1;
}
/**
* .protos.StaticCollectionConfig static_collection_config = 1 [json_name = "staticCollectionConfig"];
* @return The staticCollectionConfig.
*/
@java.lang.Override
public org.hyperledger.fabric.protos.peer.StaticCollectionConfig getStaticCollectionConfig() {
if (staticCollectionConfigBuilder_ == null) {
if (payloadCase_ == 1) {
return (org.hyperledger.fabric.protos.peer.StaticCollectionConfig) payload_;
}
return org.hyperledger.fabric.protos.peer.StaticCollectionConfig.getDefaultInstance();
} else {
if (payloadCase_ == 1) {
return staticCollectionConfigBuilder_.getMessage();
}
return org.hyperledger.fabric.protos.peer.StaticCollectionConfig.getDefaultInstance();
}
}
/**
* .protos.StaticCollectionConfig static_collection_config = 1 [json_name = "staticCollectionConfig"];
*/
public Builder setStaticCollectionConfig(org.hyperledger.fabric.protos.peer.StaticCollectionConfig value) {
if (staticCollectionConfigBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
payload_ = value;
onChanged();
} else {
staticCollectionConfigBuilder_.setMessage(value);
}
payloadCase_ = 1;
return this;
}
/**
* .protos.StaticCollectionConfig static_collection_config = 1 [json_name = "staticCollectionConfig"];
*/
public Builder setStaticCollectionConfig(
org.hyperledger.fabric.protos.peer.StaticCollectionConfig.Builder builderForValue) {
if (staticCollectionConfigBuilder_ == null) {
payload_ = builderForValue.build();
onChanged();
} else {
staticCollectionConfigBuilder_.setMessage(builderForValue.build());
}
payloadCase_ = 1;
return this;
}
/**
* .protos.StaticCollectionConfig static_collection_config = 1 [json_name = "staticCollectionConfig"];
*/
public Builder mergeStaticCollectionConfig(org.hyperledger.fabric.protos.peer.StaticCollectionConfig value) {
if (staticCollectionConfigBuilder_ == null) {
if (payloadCase_ == 1 &&
payload_ != org.hyperledger.fabric.protos.peer.StaticCollectionConfig.getDefaultInstance()) {
payload_ = org.hyperledger.fabric.protos.peer.StaticCollectionConfig.newBuilder((org.hyperledger.fabric.protos.peer.StaticCollectionConfig) payload_)
.mergeFrom(value).buildPartial();
} else {
payload_ = value;
}
onChanged();
} else {
if (payloadCase_ == 1) {
staticCollectionConfigBuilder_.mergeFrom(value);
} else {
staticCollectionConfigBuilder_.setMessage(value);
}
}
payloadCase_ = 1;
return this;
}
/**
* .protos.StaticCollectionConfig static_collection_config = 1 [json_name = "staticCollectionConfig"];
*/
public Builder clearStaticCollectionConfig() {
if (staticCollectionConfigBuilder_ == null) {
if (payloadCase_ == 1) {
payloadCase_ = 0;
payload_ = null;
onChanged();
}
} else {
if (payloadCase_ == 1) {
payloadCase_ = 0;
payload_ = null;
}
staticCollectionConfigBuilder_.clear();
}
return this;
}
/**
* .protos.StaticCollectionConfig static_collection_config = 1 [json_name = "staticCollectionConfig"];
*/
public org.hyperledger.fabric.protos.peer.StaticCollectionConfig.Builder getStaticCollectionConfigBuilder() {
return getStaticCollectionConfigFieldBuilder().getBuilder();
}
/**
* .protos.StaticCollectionConfig static_collection_config = 1 [json_name = "staticCollectionConfig"];
*/
@java.lang.Override
public org.hyperledger.fabric.protos.peer.StaticCollectionConfigOrBuilder getStaticCollectionConfigOrBuilder() {
if ((payloadCase_ == 1) && (staticCollectionConfigBuilder_ != null)) {
return staticCollectionConfigBuilder_.getMessageOrBuilder();
} else {
if (payloadCase_ == 1) {
return (org.hyperledger.fabric.protos.peer.StaticCollectionConfig) payload_;
}
return org.hyperledger.fabric.protos.peer.StaticCollectionConfig.getDefaultInstance();
}
}
/**
* .protos.StaticCollectionConfig static_collection_config = 1 [json_name = "staticCollectionConfig"];
*/
private com.google.protobuf.SingleFieldBuilder<
org.hyperledger.fabric.protos.peer.StaticCollectionConfig, org.hyperledger.fabric.protos.peer.StaticCollectionConfig.Builder, org.hyperledger.fabric.protos.peer.StaticCollectionConfigOrBuilder>
getStaticCollectionConfigFieldBuilder() {
if (staticCollectionConfigBuilder_ == null) {
if (!(payloadCase_ == 1)) {
payload_ = org.hyperledger.fabric.protos.peer.StaticCollectionConfig.getDefaultInstance();
}
staticCollectionConfigBuilder_ = new com.google.protobuf.SingleFieldBuilder<
org.hyperledger.fabric.protos.peer.StaticCollectionConfig, org.hyperledger.fabric.protos.peer.StaticCollectionConfig.Builder, org.hyperledger.fabric.protos.peer.StaticCollectionConfigOrBuilder>(
(org.hyperledger.fabric.protos.peer.StaticCollectionConfig) payload_,
getParentForChildren(),
isClean());
payload_ = null;
}
payloadCase_ = 1;
onChanged();
return staticCollectionConfigBuilder_;
}
// @@protoc_insertion_point(builder_scope:protos.CollectionConfig)
}
// @@protoc_insertion_point(class_scope:protos.CollectionConfig)
private static final org.hyperledger.fabric.protos.peer.CollectionConfig DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new org.hyperledger.fabric.protos.peer.CollectionConfig();
}
public static org.hyperledger.fabric.protos.peer.CollectionConfig getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public CollectionConfig 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.CollectionConfig getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy