xyz.block.ftl.v1.schema.Database Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: xyz/block/ftl/v1/schema/schema.proto
// Protobuf Java Version: 3.25.4
package xyz.block.ftl.v1.schema;
/**
* Protobuf type {@code xyz.block.ftl.v1.schema.Database}
*/
public final class Database extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:xyz.block.ftl.v1.schema.Database)
DatabaseOrBuilder {
private static final long serialVersionUID = 0L;
// Use Database.newBuilder() to construct.
private Database(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Database() {
comments_ =
com.google.protobuf.LazyStringArrayList.emptyList();
type_ = "";
name_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new Database();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return xyz.block.ftl.v1.schema.SchemaOuterClass.internal_static_xyz_block_ftl_v1_schema_Database_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return xyz.block.ftl.v1.schema.SchemaOuterClass.internal_static_xyz_block_ftl_v1_schema_Database_fieldAccessorTable
.ensureFieldAccessorsInitialized(
xyz.block.ftl.v1.schema.Database.class, xyz.block.ftl.v1.schema.Database.Builder.class);
}
private int bitField0_;
public static final int POS_FIELD_NUMBER = 1;
private xyz.block.ftl.v1.schema.Position pos_;
/**
* optional .xyz.block.ftl.v1.schema.Position pos = 1;
* @return Whether the pos field is set.
*/
@java.lang.Override
public boolean hasPos() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* optional .xyz.block.ftl.v1.schema.Position pos = 1;
* @return The pos.
*/
@java.lang.Override
public xyz.block.ftl.v1.schema.Position getPos() {
return pos_ == null ? xyz.block.ftl.v1.schema.Position.getDefaultInstance() : pos_;
}
/**
* optional .xyz.block.ftl.v1.schema.Position pos = 1;
*/
@java.lang.Override
public xyz.block.ftl.v1.schema.PositionOrBuilder getPosOrBuilder() {
return pos_ == null ? xyz.block.ftl.v1.schema.Position.getDefaultInstance() : pos_;
}
public static final int RUNTIME_FIELD_NUMBER = 31634;
private xyz.block.ftl.v1.schema.DatabaseRuntime runtime_;
/**
* optional .xyz.block.ftl.v1.schema.DatabaseRuntime runtime = 31634;
* @return Whether the runtime field is set.
*/
@java.lang.Override
public boolean hasRuntime() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* optional .xyz.block.ftl.v1.schema.DatabaseRuntime runtime = 31634;
* @return The runtime.
*/
@java.lang.Override
public xyz.block.ftl.v1.schema.DatabaseRuntime getRuntime() {
return runtime_ == null ? xyz.block.ftl.v1.schema.DatabaseRuntime.getDefaultInstance() : runtime_;
}
/**
* optional .xyz.block.ftl.v1.schema.DatabaseRuntime runtime = 31634;
*/
@java.lang.Override
public xyz.block.ftl.v1.schema.DatabaseRuntimeOrBuilder getRuntimeOrBuilder() {
return runtime_ == null ? xyz.block.ftl.v1.schema.DatabaseRuntime.getDefaultInstance() : runtime_;
}
public static final int COMMENTS_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private com.google.protobuf.LazyStringArrayList comments_ =
com.google.protobuf.LazyStringArrayList.emptyList();
/**
* repeated string comments = 2;
* @return A list containing the comments.
*/
public com.google.protobuf.ProtocolStringList
getCommentsList() {
return comments_;
}
/**
* repeated string comments = 2;
* @return The count of comments.
*/
public int getCommentsCount() {
return comments_.size();
}
/**
* repeated string comments = 2;
* @param index The index of the element to return.
* @return The comments at the given index.
*/
public java.lang.String getComments(int index) {
return comments_.get(index);
}
/**
* repeated string comments = 2;
* @param index The index of the value to return.
* @return The bytes of the comments at the given index.
*/
public com.google.protobuf.ByteString
getCommentsBytes(int index) {
return comments_.getByteString(index);
}
public static final int TYPE_FIELD_NUMBER = 4;
@SuppressWarnings("serial")
private volatile java.lang.Object type_ = "";
/**
* string type = 4;
* @return The type.
*/
@java.lang.Override
public java.lang.String getType() {
java.lang.Object 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();
type_ = s;
return s;
}
}
/**
* string type = 4;
* @return The bytes for type.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getTypeBytes() {
java.lang.Object ref = type_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
type_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int NAME_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
/**
* string name = 3;
* @return The name.
*/
@java.lang.Override
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();
name_ = s;
return s;
}
}
/**
* string name = 3;
* @return The bytes for name.
*/
@java.lang.Override
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;
}
}
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 (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(1, getPos());
}
for (int i = 0; i < comments_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, comments_.getRaw(i));
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, name_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(type_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 4, type_);
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeMessage(31634, getRuntime());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getPos());
}
{
int dataSize = 0;
for (int i = 0; i < comments_.size(); i++) {
dataSize += computeStringSizeNoTag(comments_.getRaw(i));
}
size += dataSize;
size += 1 * getCommentsList().size();
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, name_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(type_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, type_);
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(31634, getRuntime());
}
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.v1.schema.Database)) {
return super.equals(obj);
}
xyz.block.ftl.v1.schema.Database other = (xyz.block.ftl.v1.schema.Database) obj;
if (hasPos() != other.hasPos()) return false;
if (hasPos()) {
if (!getPos()
.equals(other.getPos())) return false;
}
if (hasRuntime() != other.hasRuntime()) return false;
if (hasRuntime()) {
if (!getRuntime()
.equals(other.getRuntime())) return false;
}
if (!getCommentsList()
.equals(other.getCommentsList())) return false;
if (!getType()
.equals(other.getType())) return false;
if (!getName()
.equals(other.getName())) 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 (hasPos()) {
hash = (37 * hash) + POS_FIELD_NUMBER;
hash = (53 * hash) + getPos().hashCode();
}
if (hasRuntime()) {
hash = (37 * hash) + RUNTIME_FIELD_NUMBER;
hash = (53 * hash) + getRuntime().hashCode();
}
if (getCommentsCount() > 0) {
hash = (37 * hash) + COMMENTS_FIELD_NUMBER;
hash = (53 * hash) + getCommentsList().hashCode();
}
hash = (37 * hash) + TYPE_FIELD_NUMBER;
hash = (53 * hash) + getType().hashCode();
hash = (37 * hash) + NAME_FIELD_NUMBER;
hash = (53 * hash) + getName().hashCode();
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static xyz.block.ftl.v1.schema.Database parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static xyz.block.ftl.v1.schema.Database 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.v1.schema.Database parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static xyz.block.ftl.v1.schema.Database 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.v1.schema.Database parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static xyz.block.ftl.v1.schema.Database parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static xyz.block.ftl.v1.schema.Database parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static xyz.block.ftl.v1.schema.Database 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.v1.schema.Database parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static xyz.block.ftl.v1.schema.Database 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.v1.schema.Database parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static xyz.block.ftl.v1.schema.Database 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.v1.schema.Database 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.v1.schema.Database}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:xyz.block.ftl.v1.schema.Database)
xyz.block.ftl.v1.schema.DatabaseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return xyz.block.ftl.v1.schema.SchemaOuterClass.internal_static_xyz_block_ftl_v1_schema_Database_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return xyz.block.ftl.v1.schema.SchemaOuterClass.internal_static_xyz_block_ftl_v1_schema_Database_fieldAccessorTable
.ensureFieldAccessorsInitialized(
xyz.block.ftl.v1.schema.Database.class, xyz.block.ftl.v1.schema.Database.Builder.class);
}
// Construct using xyz.block.ftl.v1.schema.Database.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getPosFieldBuilder();
getRuntimeFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
pos_ = null;
if (posBuilder_ != null) {
posBuilder_.dispose();
posBuilder_ = null;
}
runtime_ = null;
if (runtimeBuilder_ != null) {
runtimeBuilder_.dispose();
runtimeBuilder_ = null;
}
comments_ =
com.google.protobuf.LazyStringArrayList.emptyList();
type_ = "";
name_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return xyz.block.ftl.v1.schema.SchemaOuterClass.internal_static_xyz_block_ftl_v1_schema_Database_descriptor;
}
@java.lang.Override
public xyz.block.ftl.v1.schema.Database getDefaultInstanceForType() {
return xyz.block.ftl.v1.schema.Database.getDefaultInstance();
}
@java.lang.Override
public xyz.block.ftl.v1.schema.Database build() {
xyz.block.ftl.v1.schema.Database result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public xyz.block.ftl.v1.schema.Database buildPartial() {
xyz.block.ftl.v1.schema.Database result = new xyz.block.ftl.v1.schema.Database(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(xyz.block.ftl.v1.schema.Database result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.pos_ = posBuilder_ == null
? pos_
: posBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.runtime_ = runtimeBuilder_ == null
? runtime_
: runtimeBuilder_.build();
to_bitField0_ |= 0x00000002;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
comments_.makeImmutable();
result.comments_ = comments_;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.type_ = type_;
}
if (((from_bitField0_ & 0x00000010) != 0)) {
result.name_ = name_;
}
result.bitField0_ |= to_bitField0_;
}
@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.v1.schema.Database) {
return mergeFrom((xyz.block.ftl.v1.schema.Database)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(xyz.block.ftl.v1.schema.Database other) {
if (other == xyz.block.ftl.v1.schema.Database.getDefaultInstance()) return this;
if (other.hasPos()) {
mergePos(other.getPos());
}
if (other.hasRuntime()) {
mergeRuntime(other.getRuntime());
}
if (!other.comments_.isEmpty()) {
if (comments_.isEmpty()) {
comments_ = other.comments_;
bitField0_ |= 0x00000004;
} else {
ensureCommentsIsMutable();
comments_.addAll(other.comments_);
}
onChanged();
}
if (!other.getType().isEmpty()) {
type_ = other.type_;
bitField0_ |= 0x00000008;
onChanged();
}
if (!other.getName().isEmpty()) {
name_ = other.name_;
bitField0_ |= 0x00000010;
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: {
input.readMessage(
getPosFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
java.lang.String s = input.readStringRequireUtf8();
ensureCommentsIsMutable();
comments_.add(s);
break;
} // case 18
case 26: {
name_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000010;
break;
} // case 26
case 34: {
type_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000008;
break;
} // case 34
case 253074: {
input.readMessage(
getRuntimeFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000002;
break;
} // case 253074
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 xyz.block.ftl.v1.schema.Position pos_;
private com.google.protobuf.SingleFieldBuilderV3<
xyz.block.ftl.v1.schema.Position, xyz.block.ftl.v1.schema.Position.Builder, xyz.block.ftl.v1.schema.PositionOrBuilder> posBuilder_;
/**
* optional .xyz.block.ftl.v1.schema.Position pos = 1;
* @return Whether the pos field is set.
*/
public boolean hasPos() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* optional .xyz.block.ftl.v1.schema.Position pos = 1;
* @return The pos.
*/
public xyz.block.ftl.v1.schema.Position getPos() {
if (posBuilder_ == null) {
return pos_ == null ? xyz.block.ftl.v1.schema.Position.getDefaultInstance() : pos_;
} else {
return posBuilder_.getMessage();
}
}
/**
* optional .xyz.block.ftl.v1.schema.Position pos = 1;
*/
public Builder setPos(xyz.block.ftl.v1.schema.Position value) {
if (posBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
pos_ = value;
} else {
posBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* optional .xyz.block.ftl.v1.schema.Position pos = 1;
*/
public Builder setPos(
xyz.block.ftl.v1.schema.Position.Builder builderForValue) {
if (posBuilder_ == null) {
pos_ = builderForValue.build();
} else {
posBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* optional .xyz.block.ftl.v1.schema.Position pos = 1;
*/
public Builder mergePos(xyz.block.ftl.v1.schema.Position value) {
if (posBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0) &&
pos_ != null &&
pos_ != xyz.block.ftl.v1.schema.Position.getDefaultInstance()) {
getPosBuilder().mergeFrom(value);
} else {
pos_ = value;
}
} else {
posBuilder_.mergeFrom(value);
}
if (pos_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
* optional .xyz.block.ftl.v1.schema.Position pos = 1;
*/
public Builder clearPos() {
bitField0_ = (bitField0_ & ~0x00000001);
pos_ = null;
if (posBuilder_ != null) {
posBuilder_.dispose();
posBuilder_ = null;
}
onChanged();
return this;
}
/**
* optional .xyz.block.ftl.v1.schema.Position pos = 1;
*/
public xyz.block.ftl.v1.schema.Position.Builder getPosBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getPosFieldBuilder().getBuilder();
}
/**
* optional .xyz.block.ftl.v1.schema.Position pos = 1;
*/
public xyz.block.ftl.v1.schema.PositionOrBuilder getPosOrBuilder() {
if (posBuilder_ != null) {
return posBuilder_.getMessageOrBuilder();
} else {
return pos_ == null ?
xyz.block.ftl.v1.schema.Position.getDefaultInstance() : pos_;
}
}
/**
* optional .xyz.block.ftl.v1.schema.Position pos = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
xyz.block.ftl.v1.schema.Position, xyz.block.ftl.v1.schema.Position.Builder, xyz.block.ftl.v1.schema.PositionOrBuilder>
getPosFieldBuilder() {
if (posBuilder_ == null) {
posBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
xyz.block.ftl.v1.schema.Position, xyz.block.ftl.v1.schema.Position.Builder, xyz.block.ftl.v1.schema.PositionOrBuilder>(
getPos(),
getParentForChildren(),
isClean());
pos_ = null;
}
return posBuilder_;
}
private xyz.block.ftl.v1.schema.DatabaseRuntime runtime_;
private com.google.protobuf.SingleFieldBuilderV3<
xyz.block.ftl.v1.schema.DatabaseRuntime, xyz.block.ftl.v1.schema.DatabaseRuntime.Builder, xyz.block.ftl.v1.schema.DatabaseRuntimeOrBuilder> runtimeBuilder_;
/**
* optional .xyz.block.ftl.v1.schema.DatabaseRuntime runtime = 31634;
* @return Whether the runtime field is set.
*/
public boolean hasRuntime() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* optional .xyz.block.ftl.v1.schema.DatabaseRuntime runtime = 31634;
* @return The runtime.
*/
public xyz.block.ftl.v1.schema.DatabaseRuntime getRuntime() {
if (runtimeBuilder_ == null) {
return runtime_ == null ? xyz.block.ftl.v1.schema.DatabaseRuntime.getDefaultInstance() : runtime_;
} else {
return runtimeBuilder_.getMessage();
}
}
/**
* optional .xyz.block.ftl.v1.schema.DatabaseRuntime runtime = 31634;
*/
public Builder setRuntime(xyz.block.ftl.v1.schema.DatabaseRuntime value) {
if (runtimeBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
runtime_ = value;
} else {
runtimeBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* optional .xyz.block.ftl.v1.schema.DatabaseRuntime runtime = 31634;
*/
public Builder setRuntime(
xyz.block.ftl.v1.schema.DatabaseRuntime.Builder builderForValue) {
if (runtimeBuilder_ == null) {
runtime_ = builderForValue.build();
} else {
runtimeBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* optional .xyz.block.ftl.v1.schema.DatabaseRuntime runtime = 31634;
*/
public Builder mergeRuntime(xyz.block.ftl.v1.schema.DatabaseRuntime value) {
if (runtimeBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0) &&
runtime_ != null &&
runtime_ != xyz.block.ftl.v1.schema.DatabaseRuntime.getDefaultInstance()) {
getRuntimeBuilder().mergeFrom(value);
} else {
runtime_ = value;
}
} else {
runtimeBuilder_.mergeFrom(value);
}
if (runtime_ != null) {
bitField0_ |= 0x00000002;
onChanged();
}
return this;
}
/**
* optional .xyz.block.ftl.v1.schema.DatabaseRuntime runtime = 31634;
*/
public Builder clearRuntime() {
bitField0_ = (bitField0_ & ~0x00000002);
runtime_ = null;
if (runtimeBuilder_ != null) {
runtimeBuilder_.dispose();
runtimeBuilder_ = null;
}
onChanged();
return this;
}
/**
* optional .xyz.block.ftl.v1.schema.DatabaseRuntime runtime = 31634;
*/
public xyz.block.ftl.v1.schema.DatabaseRuntime.Builder getRuntimeBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getRuntimeFieldBuilder().getBuilder();
}
/**
* optional .xyz.block.ftl.v1.schema.DatabaseRuntime runtime = 31634;
*/
public xyz.block.ftl.v1.schema.DatabaseRuntimeOrBuilder getRuntimeOrBuilder() {
if (runtimeBuilder_ != null) {
return runtimeBuilder_.getMessageOrBuilder();
} else {
return runtime_ == null ?
xyz.block.ftl.v1.schema.DatabaseRuntime.getDefaultInstance() : runtime_;
}
}
/**
* optional .xyz.block.ftl.v1.schema.DatabaseRuntime runtime = 31634;
*/
private com.google.protobuf.SingleFieldBuilderV3<
xyz.block.ftl.v1.schema.DatabaseRuntime, xyz.block.ftl.v1.schema.DatabaseRuntime.Builder, xyz.block.ftl.v1.schema.DatabaseRuntimeOrBuilder>
getRuntimeFieldBuilder() {
if (runtimeBuilder_ == null) {
runtimeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
xyz.block.ftl.v1.schema.DatabaseRuntime, xyz.block.ftl.v1.schema.DatabaseRuntime.Builder, xyz.block.ftl.v1.schema.DatabaseRuntimeOrBuilder>(
getRuntime(),
getParentForChildren(),
isClean());
runtime_ = null;
}
return runtimeBuilder_;
}
private com.google.protobuf.LazyStringArrayList comments_ =
com.google.protobuf.LazyStringArrayList.emptyList();
private void ensureCommentsIsMutable() {
if (!comments_.isModifiable()) {
comments_ = new com.google.protobuf.LazyStringArrayList(comments_);
}
bitField0_ |= 0x00000004;
}
/**
* repeated string comments = 2;
* @return A list containing the comments.
*/
public com.google.protobuf.ProtocolStringList
getCommentsList() {
comments_.makeImmutable();
return comments_;
}
/**
* repeated string comments = 2;
* @return The count of comments.
*/
public int getCommentsCount() {
return comments_.size();
}
/**
* repeated string comments = 2;
* @param index The index of the element to return.
* @return The comments at the given index.
*/
public java.lang.String getComments(int index) {
return comments_.get(index);
}
/**
* repeated string comments = 2;
* @param index The index of the value to return.
* @return The bytes of the comments at the given index.
*/
public com.google.protobuf.ByteString
getCommentsBytes(int index) {
return comments_.getByteString(index);
}
/**
* repeated string comments = 2;
* @param index The index to set the value at.
* @param value The comments to set.
* @return This builder for chaining.
*/
public Builder setComments(
int index, java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensureCommentsIsMutable();
comments_.set(index, value);
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
* repeated string comments = 2;
* @param value The comments to add.
* @return This builder for chaining.
*/
public Builder addComments(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensureCommentsIsMutable();
comments_.add(value);
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
* repeated string comments = 2;
* @param values The comments to add.
* @return This builder for chaining.
*/
public Builder addAllComments(
java.lang.Iterable values) {
ensureCommentsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, comments_);
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
* repeated string comments = 2;
* @return This builder for chaining.
*/
public Builder clearComments() {
comments_ =
com.google.protobuf.LazyStringArrayList.emptyList();
bitField0_ = (bitField0_ & ~0x00000004);;
onChanged();
return this;
}
/**
* repeated string comments = 2;
* @param value The bytes of the comments to add.
* @return This builder for chaining.
*/
public Builder addCommentsBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
ensureCommentsIsMutable();
comments_.add(value);
bitField0_ |= 0x00000004;
onChanged();
return this;
}
private java.lang.Object type_ = "";
/**
* string type = 4;
* @return The type.
*/
public java.lang.String getType() {
java.lang.Object ref = type_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
type_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string type = 4;
* @return The bytes for type.
*/
public com.google.protobuf.ByteString
getTypeBytes() {
java.lang.Object ref = type_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
type_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string type = 4;
* @param value The type to set.
* @return This builder for chaining.
*/
public Builder setType(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
type_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
* string type = 4;
* @return This builder for chaining.
*/
public Builder clearType() {
type_ = getDefaultInstance().getType();
bitField0_ = (bitField0_ & ~0x00000008);
onChanged();
return this;
}
/**
* string type = 4;
* @param value The bytes for type to set.
* @return This builder for chaining.
*/
public Builder setTypeBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
type_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
private java.lang.Object name_ = "";
/**
* string name = 3;
* @return The name.
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
name_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string name = 3;
* @return The bytes for name.
*/
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;
}
}
/**
* string name = 3;
* @param value The name to set.
* @return This builder for chaining.
*/
public Builder setName(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
name_ = value;
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
* string name = 3;
* @return This builder for chaining.
*/
public Builder clearName() {
name_ = getDefaultInstance().getName();
bitField0_ = (bitField0_ & ~0x00000010);
onChanged();
return this;
}
/**
* string name = 3;
* @param value The bytes for name to set.
* @return This builder for chaining.
*/
public Builder setNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
name_ = value;
bitField0_ |= 0x00000010;
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.v1.schema.Database)
}
// @@protoc_insertion_point(class_scope:xyz.block.ftl.v1.schema.Database)
private static final xyz.block.ftl.v1.schema.Database DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new xyz.block.ftl.v1.schema.Database();
}
public static xyz.block.ftl.v1.schema.Database getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Database 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.v1.schema.Database getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy