
xyz.block.ftl.schema.v1.TopicRuntime Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: xyz/block/ftl/schema/v1/schema.proto
// Protobuf Java Version: 3.25.4
package xyz.block.ftl.schema.v1;
/**
* Protobuf type {@code xyz.block.ftl.schema.v1.TopicRuntime}
*/
public final class TopicRuntime extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:xyz.block.ftl.schema.v1.TopicRuntime)
TopicRuntimeOrBuilder {
private static final long serialVersionUID = 0L;
// Use TopicRuntime.newBuilder() to construct.
private TopicRuntime(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private TopicRuntime() {
kafkaBrokers_ =
com.google.protobuf.LazyStringArrayList.emptyList();
topicId_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new TopicRuntime();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return xyz.block.ftl.schema.v1.SchemaOuterClass.internal_static_xyz_block_ftl_schema_v1_TopicRuntime_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return xyz.block.ftl.schema.v1.SchemaOuterClass.internal_static_xyz_block_ftl_schema_v1_TopicRuntime_fieldAccessorTable
.ensureFieldAccessorsInitialized(
xyz.block.ftl.schema.v1.TopicRuntime.class, xyz.block.ftl.schema.v1.TopicRuntime.Builder.class);
}
public static final int KAFKA_BROKERS_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private com.google.protobuf.LazyStringArrayList kafkaBrokers_ =
com.google.protobuf.LazyStringArrayList.emptyList();
/**
* repeated string kafka_brokers = 1;
* @return A list containing the kafkaBrokers.
*/
public com.google.protobuf.ProtocolStringList
getKafkaBrokersList() {
return kafkaBrokers_;
}
/**
* repeated string kafka_brokers = 1;
* @return The count of kafkaBrokers.
*/
public int getKafkaBrokersCount() {
return kafkaBrokers_.size();
}
/**
* repeated string kafka_brokers = 1;
* @param index The index of the element to return.
* @return The kafkaBrokers at the given index.
*/
public java.lang.String getKafkaBrokers(int index) {
return kafkaBrokers_.get(index);
}
/**
* repeated string kafka_brokers = 1;
* @param index The index of the value to return.
* @return The bytes of the kafkaBrokers at the given index.
*/
public com.google.protobuf.ByteString
getKafkaBrokersBytes(int index) {
return kafkaBrokers_.getByteString(index);
}
public static final int TOPIC_ID_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object topicId_ = "";
/**
* string topic_id = 2;
* @return The topicId.
*/
@java.lang.Override
public java.lang.String getTopicId() {
java.lang.Object ref = topicId_;
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();
topicId_ = s;
return s;
}
}
/**
* string topic_id = 2;
* @return The bytes for topicId.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getTopicIdBytes() {
java.lang.Object ref = topicId_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
topicId_ = 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 {
for (int i = 0; i < kafkaBrokers_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, kafkaBrokers_.getRaw(i));
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(topicId_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, topicId_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
{
int dataSize = 0;
for (int i = 0; i < kafkaBrokers_.size(); i++) {
dataSize += computeStringSizeNoTag(kafkaBrokers_.getRaw(i));
}
size += dataSize;
size += 1 * getKafkaBrokersList().size();
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(topicId_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, topicId_);
}
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 xyz.block.ftl.schema.v1.TopicRuntime)) {
return super.equals(obj);
}
xyz.block.ftl.schema.v1.TopicRuntime other = (xyz.block.ftl.schema.v1.TopicRuntime) obj;
if (!getKafkaBrokersList()
.equals(other.getKafkaBrokersList())) return false;
if (!getTopicId()
.equals(other.getTopicId())) return false;
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();
if (getKafkaBrokersCount() > 0) {
hash = (37 * hash) + KAFKA_BROKERS_FIELD_NUMBER;
hash = (53 * hash) + getKafkaBrokersList().hashCode();
}
hash = (37 * hash) + TOPIC_ID_FIELD_NUMBER;
hash = (53 * hash) + getTopicId().hashCode();
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static xyz.block.ftl.schema.v1.TopicRuntime parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static xyz.block.ftl.schema.v1.TopicRuntime parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static xyz.block.ftl.schema.v1.TopicRuntime parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static xyz.block.ftl.schema.v1.TopicRuntime parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static xyz.block.ftl.schema.v1.TopicRuntime parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static xyz.block.ftl.schema.v1.TopicRuntime parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static xyz.block.ftl.schema.v1.TopicRuntime parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static xyz.block.ftl.schema.v1.TopicRuntime parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static xyz.block.ftl.schema.v1.TopicRuntime parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static xyz.block.ftl.schema.v1.TopicRuntime parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static xyz.block.ftl.schema.v1.TopicRuntime parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static xyz.block.ftl.schema.v1.TopicRuntime parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(xyz.block.ftl.schema.v1.TopicRuntime 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.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code xyz.block.ftl.schema.v1.TopicRuntime}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:xyz.block.ftl.schema.v1.TopicRuntime)
xyz.block.ftl.schema.v1.TopicRuntimeOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return xyz.block.ftl.schema.v1.SchemaOuterClass.internal_static_xyz_block_ftl_schema_v1_TopicRuntime_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return xyz.block.ftl.schema.v1.SchemaOuterClass.internal_static_xyz_block_ftl_schema_v1_TopicRuntime_fieldAccessorTable
.ensureFieldAccessorsInitialized(
xyz.block.ftl.schema.v1.TopicRuntime.class, xyz.block.ftl.schema.v1.TopicRuntime.Builder.class);
}
// Construct using xyz.block.ftl.schema.v1.TopicRuntime.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
kafkaBrokers_ =
com.google.protobuf.LazyStringArrayList.emptyList();
topicId_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return xyz.block.ftl.schema.v1.SchemaOuterClass.internal_static_xyz_block_ftl_schema_v1_TopicRuntime_descriptor;
}
@java.lang.Override
public xyz.block.ftl.schema.v1.TopicRuntime getDefaultInstanceForType() {
return xyz.block.ftl.schema.v1.TopicRuntime.getDefaultInstance();
}
@java.lang.Override
public xyz.block.ftl.schema.v1.TopicRuntime build() {
xyz.block.ftl.schema.v1.TopicRuntime result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public xyz.block.ftl.schema.v1.TopicRuntime buildPartial() {
xyz.block.ftl.schema.v1.TopicRuntime result = new xyz.block.ftl.schema.v1.TopicRuntime(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(xyz.block.ftl.schema.v1.TopicRuntime result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
kafkaBrokers_.makeImmutable();
result.kafkaBrokers_ = kafkaBrokers_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.topicId_ = topicId_;
}
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof xyz.block.ftl.schema.v1.TopicRuntime) {
return mergeFrom((xyz.block.ftl.schema.v1.TopicRuntime)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(xyz.block.ftl.schema.v1.TopicRuntime other) {
if (other == xyz.block.ftl.schema.v1.TopicRuntime.getDefaultInstance()) return this;
if (!other.kafkaBrokers_.isEmpty()) {
if (kafkaBrokers_.isEmpty()) {
kafkaBrokers_ = other.kafkaBrokers_;
bitField0_ |= 0x00000001;
} else {
ensureKafkaBrokersIsMutable();
kafkaBrokers_.addAll(other.kafkaBrokers_);
}
onChanged();
}
if (!other.getTopicId().isEmpty()) {
topicId_ = other.topicId_;
bitField0_ |= 0x00000002;
onChanged();
}
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: {
java.lang.String s = input.readStringRequireUtf8();
ensureKafkaBrokersIsMutable();
kafkaBrokers_.add(s);
break;
} // case 10
case 18: {
topicId_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 18
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 bitField0_;
private com.google.protobuf.LazyStringArrayList kafkaBrokers_ =
com.google.protobuf.LazyStringArrayList.emptyList();
private void ensureKafkaBrokersIsMutable() {
if (!kafkaBrokers_.isModifiable()) {
kafkaBrokers_ = new com.google.protobuf.LazyStringArrayList(kafkaBrokers_);
}
bitField0_ |= 0x00000001;
}
/**
* repeated string kafka_brokers = 1;
* @return A list containing the kafkaBrokers.
*/
public com.google.protobuf.ProtocolStringList
getKafkaBrokersList() {
kafkaBrokers_.makeImmutable();
return kafkaBrokers_;
}
/**
* repeated string kafka_brokers = 1;
* @return The count of kafkaBrokers.
*/
public int getKafkaBrokersCount() {
return kafkaBrokers_.size();
}
/**
* repeated string kafka_brokers = 1;
* @param index The index of the element to return.
* @return The kafkaBrokers at the given index.
*/
public java.lang.String getKafkaBrokers(int index) {
return kafkaBrokers_.get(index);
}
/**
* repeated string kafka_brokers = 1;
* @param index The index of the value to return.
* @return The bytes of the kafkaBrokers at the given index.
*/
public com.google.protobuf.ByteString
getKafkaBrokersBytes(int index) {
return kafkaBrokers_.getByteString(index);
}
/**
* repeated string kafka_brokers = 1;
* @param index The index to set the value at.
* @param value The kafkaBrokers to set.
* @return This builder for chaining.
*/
public Builder setKafkaBrokers(
int index, java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensureKafkaBrokersIsMutable();
kafkaBrokers_.set(index, value);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* repeated string kafka_brokers = 1;
* @param value The kafkaBrokers to add.
* @return This builder for chaining.
*/
public Builder addKafkaBrokers(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensureKafkaBrokersIsMutable();
kafkaBrokers_.add(value);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* repeated string kafka_brokers = 1;
* @param values The kafkaBrokers to add.
* @return This builder for chaining.
*/
public Builder addAllKafkaBrokers(
java.lang.Iterable values) {
ensureKafkaBrokersIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, kafkaBrokers_);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* repeated string kafka_brokers = 1;
* @return This builder for chaining.
*/
public Builder clearKafkaBrokers() {
kafkaBrokers_ =
com.google.protobuf.LazyStringArrayList.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);;
onChanged();
return this;
}
/**
* repeated string kafka_brokers = 1;
* @param value The bytes of the kafkaBrokers to add.
* @return This builder for chaining.
*/
public Builder addKafkaBrokersBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
ensureKafkaBrokersIsMutable();
kafkaBrokers_.add(value);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private java.lang.Object topicId_ = "";
/**
* string topic_id = 2;
* @return The topicId.
*/
public java.lang.String getTopicId() {
java.lang.Object ref = topicId_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
topicId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string topic_id = 2;
* @return The bytes for topicId.
*/
public com.google.protobuf.ByteString
getTopicIdBytes() {
java.lang.Object ref = topicId_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
topicId_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string topic_id = 2;
* @param value The topicId to set.
* @return This builder for chaining.
*/
public Builder setTopicId(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
topicId_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* string topic_id = 2;
* @return This builder for chaining.
*/
public Builder clearTopicId() {
topicId_ = getDefaultInstance().getTopicId();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
* string topic_id = 2;
* @param value The bytes for topicId to set.
* @return This builder for chaining.
*/
public Builder setTopicIdBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
topicId_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:xyz.block.ftl.schema.v1.TopicRuntime)
}
// @@protoc_insertion_point(class_scope:xyz.block.ftl.schema.v1.TopicRuntime)
private static final xyz.block.ftl.schema.v1.TopicRuntime DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new xyz.block.ftl.schema.v1.TopicRuntime();
}
public static xyz.block.ftl.schema.v1.TopicRuntime getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public TopicRuntime 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 xyz.block.ftl.schema.v1.TopicRuntime getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy