com.dimajix.flowman.kernel.proto.relation.GetRelationResponse Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: relation.proto
package com.dimajix.flowman.kernel.proto.relation;
/**
* Protobuf type {@code com.dimajix.flowman.kernel.relation.GetRelationResponse}
*/
public final class GetRelationResponse extends
com.dimajix.shaded.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:com.dimajix.flowman.kernel.relation.GetRelationResponse)
GetRelationResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use GetRelationResponse.newBuilder() to construct.
private GetRelationResponse(com.dimajix.shaded.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private GetRelationResponse() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new GetRelationResponse();
}
public static final com.dimajix.shaded.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.dimajix.flowman.kernel.proto.relation.RelationProto.internal_static_com_dimajix_flowman_kernel_relation_GetRelationResponse_descriptor;
}
@java.lang.Override
protected com.dimajix.shaded.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.dimajix.flowman.kernel.proto.relation.RelationProto.internal_static_com_dimajix_flowman_kernel_relation_GetRelationResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.dimajix.flowman.kernel.proto.relation.GetRelationResponse.class, com.dimajix.flowman.kernel.proto.relation.GetRelationResponse.Builder.class);
}
public static final int RELATION_FIELD_NUMBER = 2;
private com.dimajix.flowman.kernel.proto.relation.RelationDetails relation_;
/**
* .com.dimajix.flowman.kernel.relation.RelationDetails relation = 2;
* @return Whether the relation field is set.
*/
@java.lang.Override
public boolean hasRelation() {
return relation_ != null;
}
/**
* .com.dimajix.flowman.kernel.relation.RelationDetails relation = 2;
* @return The relation.
*/
@java.lang.Override
public com.dimajix.flowman.kernel.proto.relation.RelationDetails getRelation() {
return relation_ == null ? com.dimajix.flowman.kernel.proto.relation.RelationDetails.getDefaultInstance() : relation_;
}
/**
* .com.dimajix.flowman.kernel.relation.RelationDetails relation = 2;
*/
@java.lang.Override
public com.dimajix.flowman.kernel.proto.relation.RelationDetailsOrBuilder getRelationOrBuilder() {
return relation_ == null ? com.dimajix.flowman.kernel.proto.relation.RelationDetails.getDefaultInstance() : relation_;
}
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.dimajix.shaded.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (relation_ != null) {
output.writeMessage(2, getRelation());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (relation_ != null) {
size += com.dimajix.shaded.protobuf.CodedOutputStream
.computeMessageSize(2, getRelation());
}
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 com.dimajix.flowman.kernel.proto.relation.GetRelationResponse)) {
return super.equals(obj);
}
com.dimajix.flowman.kernel.proto.relation.GetRelationResponse other = (com.dimajix.flowman.kernel.proto.relation.GetRelationResponse) obj;
if (hasRelation() != other.hasRelation()) return false;
if (hasRelation()) {
if (!getRelation()
.equals(other.getRelation())) 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 (hasRelation()) {
hash = (37 * hash) + RELATION_FIELD_NUMBER;
hash = (53 * hash) + getRelation().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.dimajix.flowman.kernel.proto.relation.GetRelationResponse parseFrom(
java.nio.ByteBuffer data)
throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.dimajix.flowman.kernel.proto.relation.GetRelationResponse parseFrom(
java.nio.ByteBuffer data,
com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.dimajix.flowman.kernel.proto.relation.GetRelationResponse parseFrom(
com.dimajix.shaded.protobuf.ByteString data)
throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.dimajix.flowman.kernel.proto.relation.GetRelationResponse parseFrom(
com.dimajix.shaded.protobuf.ByteString data,
com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.dimajix.flowman.kernel.proto.relation.GetRelationResponse parseFrom(byte[] data)
throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.dimajix.flowman.kernel.proto.relation.GetRelationResponse parseFrom(
byte[] data,
com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.dimajix.flowman.kernel.proto.relation.GetRelationResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.dimajix.flowman.kernel.proto.relation.GetRelationResponse parseFrom(
java.io.InputStream input,
com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static com.dimajix.flowman.kernel.proto.relation.GetRelationResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.dimajix.flowman.kernel.proto.relation.GetRelationResponse parseDelimitedFrom(
java.io.InputStream input,
com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static com.dimajix.flowman.kernel.proto.relation.GetRelationResponse parseFrom(
com.dimajix.shaded.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.dimajix.flowman.kernel.proto.relation.GetRelationResponse parseFrom(
com.dimajix.shaded.protobuf.CodedInputStream input,
com.dimajix.shaded.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(com.dimajix.flowman.kernel.proto.relation.GetRelationResponse 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.dimajix.shaded.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code com.dimajix.flowman.kernel.relation.GetRelationResponse}
*/
public static final class Builder extends
com.dimajix.shaded.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:com.dimajix.flowman.kernel.relation.GetRelationResponse)
com.dimajix.flowman.kernel.proto.relation.GetRelationResponseOrBuilder {
public static final com.dimajix.shaded.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.dimajix.flowman.kernel.proto.relation.RelationProto.internal_static_com_dimajix_flowman_kernel_relation_GetRelationResponse_descriptor;
}
@java.lang.Override
protected com.dimajix.shaded.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.dimajix.flowman.kernel.proto.relation.RelationProto.internal_static_com_dimajix_flowman_kernel_relation_GetRelationResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.dimajix.flowman.kernel.proto.relation.GetRelationResponse.class, com.dimajix.flowman.kernel.proto.relation.GetRelationResponse.Builder.class);
}
// Construct using com.dimajix.flowman.kernel.proto.relation.GetRelationResponse.newBuilder()
private Builder() {
}
private Builder(
com.dimajix.shaded.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
relation_ = null;
if (relationBuilder_ != null) {
relationBuilder_.dispose();
relationBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.dimajix.shaded.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.dimajix.flowman.kernel.proto.relation.RelationProto.internal_static_com_dimajix_flowman_kernel_relation_GetRelationResponse_descriptor;
}
@java.lang.Override
public com.dimajix.flowman.kernel.proto.relation.GetRelationResponse getDefaultInstanceForType() {
return com.dimajix.flowman.kernel.proto.relation.GetRelationResponse.getDefaultInstance();
}
@java.lang.Override
public com.dimajix.flowman.kernel.proto.relation.GetRelationResponse build() {
com.dimajix.flowman.kernel.proto.relation.GetRelationResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.dimajix.flowman.kernel.proto.relation.GetRelationResponse buildPartial() {
com.dimajix.flowman.kernel.proto.relation.GetRelationResponse result = new com.dimajix.flowman.kernel.proto.relation.GetRelationResponse(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(com.dimajix.flowman.kernel.proto.relation.GetRelationResponse result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.relation_ = relationBuilder_ == null
? relation_
: relationBuilder_.build();
}
}
@java.lang.Override
public Builder mergeFrom(com.dimajix.shaded.protobuf.Message other) {
if (other instanceof com.dimajix.flowman.kernel.proto.relation.GetRelationResponse) {
return mergeFrom((com.dimajix.flowman.kernel.proto.relation.GetRelationResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.dimajix.flowman.kernel.proto.relation.GetRelationResponse other) {
if (other == com.dimajix.flowman.kernel.proto.relation.GetRelationResponse.getDefaultInstance()) return this;
if (other.hasRelation()) {
mergeRelation(other.getRelation());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.dimajix.shaded.protobuf.CodedInputStream input,
com.dimajix.shaded.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 18: {
input.readMessage(
getRelationFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 18
default: {
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.dimajix.shaded.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private com.dimajix.flowman.kernel.proto.relation.RelationDetails relation_;
private com.dimajix.shaded.protobuf.SingleFieldBuilderV3<
com.dimajix.flowman.kernel.proto.relation.RelationDetails, com.dimajix.flowman.kernel.proto.relation.RelationDetails.Builder, com.dimajix.flowman.kernel.proto.relation.RelationDetailsOrBuilder> relationBuilder_;
/**
* .com.dimajix.flowman.kernel.relation.RelationDetails relation = 2;
* @return Whether the relation field is set.
*/
public boolean hasRelation() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* .com.dimajix.flowman.kernel.relation.RelationDetails relation = 2;
* @return The relation.
*/
public com.dimajix.flowman.kernel.proto.relation.RelationDetails getRelation() {
if (relationBuilder_ == null) {
return relation_ == null ? com.dimajix.flowman.kernel.proto.relation.RelationDetails.getDefaultInstance() : relation_;
} else {
return relationBuilder_.getMessage();
}
}
/**
* .com.dimajix.flowman.kernel.relation.RelationDetails relation = 2;
*/
public Builder setRelation(com.dimajix.flowman.kernel.proto.relation.RelationDetails value) {
if (relationBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
relation_ = value;
} else {
relationBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* .com.dimajix.flowman.kernel.relation.RelationDetails relation = 2;
*/
public Builder setRelation(
com.dimajix.flowman.kernel.proto.relation.RelationDetails.Builder builderForValue) {
if (relationBuilder_ == null) {
relation_ = builderForValue.build();
} else {
relationBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* .com.dimajix.flowman.kernel.relation.RelationDetails relation = 2;
*/
public Builder mergeRelation(com.dimajix.flowman.kernel.proto.relation.RelationDetails value) {
if (relationBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0) &&
relation_ != null &&
relation_ != com.dimajix.flowman.kernel.proto.relation.RelationDetails.getDefaultInstance()) {
getRelationBuilder().mergeFrom(value);
} else {
relation_ = value;
}
} else {
relationBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* .com.dimajix.flowman.kernel.relation.RelationDetails relation = 2;
*/
public Builder clearRelation() {
bitField0_ = (bitField0_ & ~0x00000001);
relation_ = null;
if (relationBuilder_ != null) {
relationBuilder_.dispose();
relationBuilder_ = null;
}
onChanged();
return this;
}
/**
* .com.dimajix.flowman.kernel.relation.RelationDetails relation = 2;
*/
public com.dimajix.flowman.kernel.proto.relation.RelationDetails.Builder getRelationBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getRelationFieldBuilder().getBuilder();
}
/**
* .com.dimajix.flowman.kernel.relation.RelationDetails relation = 2;
*/
public com.dimajix.flowman.kernel.proto.relation.RelationDetailsOrBuilder getRelationOrBuilder() {
if (relationBuilder_ != null) {
return relationBuilder_.getMessageOrBuilder();
} else {
return relation_ == null ?
com.dimajix.flowman.kernel.proto.relation.RelationDetails.getDefaultInstance() : relation_;
}
}
/**
* .com.dimajix.flowman.kernel.relation.RelationDetails relation = 2;
*/
private com.dimajix.shaded.protobuf.SingleFieldBuilderV3<
com.dimajix.flowman.kernel.proto.relation.RelationDetails, com.dimajix.flowman.kernel.proto.relation.RelationDetails.Builder, com.dimajix.flowman.kernel.proto.relation.RelationDetailsOrBuilder>
getRelationFieldBuilder() {
if (relationBuilder_ == null) {
relationBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.dimajix.flowman.kernel.proto.relation.RelationDetails, com.dimajix.flowman.kernel.proto.relation.RelationDetails.Builder, com.dimajix.flowman.kernel.proto.relation.RelationDetailsOrBuilder>(
getRelation(),
getParentForChildren(),
isClean());
relation_ = null;
}
return relationBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.dimajix.shaded.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.dimajix.shaded.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:com.dimajix.flowman.kernel.relation.GetRelationResponse)
}
// @@protoc_insertion_point(class_scope:com.dimajix.flowman.kernel.relation.GetRelationResponse)
private static final com.dimajix.flowman.kernel.proto.relation.GetRelationResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.dimajix.flowman.kernel.proto.relation.GetRelationResponse();
}
public static com.dimajix.flowman.kernel.proto.relation.GetRelationResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.dimajix.shaded.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public GetRelationResponse parsePartialFrom(
com.dimajix.shaded.protobuf.CodedInputStream input,
com.dimajix.shaded.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.dimajix.shaded.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.dimajix.shaded.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.dimajix.shaded.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.dimajix.shaded.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.dimajix.flowman.kernel.proto.relation.GetRelationResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy