com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest 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.DescribeRelationRequest}
*/
public final class DescribeRelationRequest extends
com.dimajix.shaded.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:com.dimajix.flowman.kernel.relation.DescribeRelationRequest)
DescribeRelationRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use DescribeRelationRequest.newBuilder() to construct.
private DescribeRelationRequest(com.dimajix.shaded.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private DescribeRelationRequest() {
sessionId_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new DescribeRelationRequest();
}
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_DescribeRelationRequest_descriptor;
}
@SuppressWarnings({"rawtypes"})
@java.lang.Override
protected com.dimajix.shaded.protobuf.MapField internalGetMapField(
int number) {
switch (number) {
case 3:
return internalGetPartition();
default:
throw new RuntimeException(
"Invalid map field number: " + number);
}
}
@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_DescribeRelationRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest.class, com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest.Builder.class);
}
public static final int SESSIONID_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object sessionId_ = "";
/**
* string sessionId = 1;
* @return The sessionId.
*/
@java.lang.Override
public java.lang.String getSessionId() {
java.lang.Object ref = sessionId_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.dimajix.shaded.protobuf.ByteString bs =
(com.dimajix.shaded.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
sessionId_ = s;
return s;
}
}
/**
* string sessionId = 1;
* @return The bytes for sessionId.
*/
@java.lang.Override
public com.dimajix.shaded.protobuf.ByteString
getSessionIdBytes() {
java.lang.Object ref = sessionId_;
if (ref instanceof java.lang.String) {
com.dimajix.shaded.protobuf.ByteString b =
com.dimajix.shaded.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
sessionId_ = b;
return b;
} else {
return (com.dimajix.shaded.protobuf.ByteString) ref;
}
}
public static final int RELATION_FIELD_NUMBER = 2;
private com.dimajix.flowman.kernel.proto.RelationIdentifier relation_;
/**
* .com.dimajix.flowman.kernel.RelationIdentifier relation = 2;
* @return Whether the relation field is set.
*/
@java.lang.Override
public boolean hasRelation() {
return relation_ != null;
}
/**
* .com.dimajix.flowman.kernel.RelationIdentifier relation = 2;
* @return The relation.
*/
@java.lang.Override
public com.dimajix.flowman.kernel.proto.RelationIdentifier getRelation() {
return relation_ == null ? com.dimajix.flowman.kernel.proto.RelationIdentifier.getDefaultInstance() : relation_;
}
/**
* .com.dimajix.flowman.kernel.RelationIdentifier relation = 2;
*/
@java.lang.Override
public com.dimajix.flowman.kernel.proto.RelationIdentifierOrBuilder getRelationOrBuilder() {
return relation_ == null ? com.dimajix.flowman.kernel.proto.RelationIdentifier.getDefaultInstance() : relation_;
}
public static final int PARTITION_FIELD_NUMBER = 3;
private static final class PartitionDefaultEntryHolder {
static final com.dimajix.shaded.protobuf.MapEntry<
java.lang.String, java.lang.String> defaultEntry =
com.dimajix.shaded.protobuf.MapEntry
.newDefaultInstance(
com.dimajix.flowman.kernel.proto.relation.RelationProto.internal_static_com_dimajix_flowman_kernel_relation_DescribeRelationRequest_PartitionEntry_descriptor,
com.dimajix.shaded.protobuf.WireFormat.FieldType.STRING,
"",
com.dimajix.shaded.protobuf.WireFormat.FieldType.STRING,
"");
}
@SuppressWarnings("serial")
private com.dimajix.shaded.protobuf.MapField<
java.lang.String, java.lang.String> partition_;
private com.dimajix.shaded.protobuf.MapField
internalGetPartition() {
if (partition_ == null) {
return com.google.protobuf.MapField.emptyMapField(
PartitionDefaultEntryHolder.defaultEntry);
}
return partition_;
}
public int getPartitionCount() {
return internalGetPartition().getMap().size();
}
/**
* map<string, string> partition = 3;
*/
@java.lang.Override
public boolean containsPartition(
java.lang.String key) {
if (key == null) { throw new NullPointerException("map key"); }
return internalGetPartition().getMap().containsKey(key);
}
/**
* Use {@link #getPartitionMap()} instead.
*/
@java.lang.Override
@java.lang.Deprecated
public java.util.Map getPartition() {
return getPartitionMap();
}
/**
* map<string, string> partition = 3;
*/
@java.lang.Override
public java.util.Map getPartitionMap() {
return internalGetPartition().getMap();
}
/**
* map<string, string> partition = 3;
*/
@java.lang.Override
public /* nullable */
java.lang.String getPartitionOrDefault(
java.lang.String key,
/* nullable */
java.lang.String defaultValue) {
if (key == null) { throw new NullPointerException("map key"); }
java.util.Map map =
internalGetPartition().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
* map<string, string> partition = 3;
*/
@java.lang.Override
public java.lang.String getPartitionOrThrow(
java.lang.String key) {
if (key == null) { throw new NullPointerException("map key"); }
java.util.Map map =
internalGetPartition().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public static final int USESPARK_FIELD_NUMBER = 4;
private boolean useSpark_ = false;
/**
* bool useSpark = 4;
* @return The useSpark.
*/
@java.lang.Override
public boolean getUseSpark() {
return useSpark_;
}
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 (!com.dimajix.shaded.protobuf.GeneratedMessageV3.isStringEmpty(sessionId_)) {
com.dimajix.shaded.protobuf.GeneratedMessageV3.writeString(output, 1, sessionId_);
}
if (relation_ != null) {
output.writeMessage(2, getRelation());
}
com.dimajix.shaded.protobuf.GeneratedMessageV3
.serializeStringMapTo(
output,
internalGetPartition(),
PartitionDefaultEntryHolder.defaultEntry,
3);
if (useSpark_ != false) {
output.writeBool(4, useSpark_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.dimajix.shaded.protobuf.GeneratedMessageV3.isStringEmpty(sessionId_)) {
size += com.dimajix.shaded.protobuf.GeneratedMessageV3.computeStringSize(1, sessionId_);
}
if (relation_ != null) {
size += com.dimajix.shaded.protobuf.CodedOutputStream
.computeMessageSize(2, getRelation());
}
for (java.util.Map.Entry entry
: internalGetPartition().getMap().entrySet()) {
com.dimajix.shaded.protobuf.MapEntry
partition__ = PartitionDefaultEntryHolder.defaultEntry.newBuilderForType()
.setKey(entry.getKey())
.setValue(entry.getValue())
.build();
size += com.dimajix.shaded.protobuf.CodedOutputStream
.computeMessageSize(3, partition__);
}
if (useSpark_ != false) {
size += com.dimajix.shaded.protobuf.CodedOutputStream
.computeBoolSize(4, useSpark_);
}
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.DescribeRelationRequest)) {
return super.equals(obj);
}
com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest other = (com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest) obj;
if (!getSessionId()
.equals(other.getSessionId())) return false;
if (hasRelation() != other.hasRelation()) return false;
if (hasRelation()) {
if (!getRelation()
.equals(other.getRelation())) return false;
}
if (!internalGetPartition().equals(
other.internalGetPartition())) return false;
if (getUseSpark()
!= other.getUseSpark()) 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();
hash = (37 * hash) + SESSIONID_FIELD_NUMBER;
hash = (53 * hash) + getSessionId().hashCode();
if (hasRelation()) {
hash = (37 * hash) + RELATION_FIELD_NUMBER;
hash = (53 * hash) + getRelation().hashCode();
}
if (!internalGetPartition().getMap().isEmpty()) {
hash = (37 * hash) + PARTITION_FIELD_NUMBER;
hash = (53 * hash) + internalGetPartition().hashCode();
}
hash = (37 * hash) + USESPARK_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getUseSpark());
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest parseFrom(
java.nio.ByteBuffer data)
throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest 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.DescribeRelationRequest 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.DescribeRelationRequest 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.DescribeRelationRequest parseFrom(byte[] data)
throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest 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.DescribeRelationRequest 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.DescribeRelationRequest 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.DescribeRelationRequest 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.DescribeRelationRequest 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.DescribeRelationRequest 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.DescribeRelationRequest 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.DescribeRelationRequest 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.DescribeRelationRequest}
*/
public static final class Builder extends
com.dimajix.shaded.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:com.dimajix.flowman.kernel.relation.DescribeRelationRequest)
com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequestOrBuilder {
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_DescribeRelationRequest_descriptor;
}
@SuppressWarnings({"rawtypes"})
protected com.dimajix.shaded.protobuf.MapField internalGetMapField(
int number) {
switch (number) {
case 3:
return internalGetPartition();
default:
throw new RuntimeException(
"Invalid map field number: " + number);
}
}
@SuppressWarnings({"rawtypes"})
protected com.dimajix.shaded.protobuf.MapField internalGetMutableMapField(
int number) {
switch (number) {
case 3:
return internalGetMutablePartition();
default:
throw new RuntimeException(
"Invalid map field number: " + number);
}
}
@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_DescribeRelationRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest.class, com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest.Builder.class);
}
// Construct using com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest.newBuilder()
private Builder() {
}
private Builder(
com.dimajix.shaded.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
sessionId_ = "";
relation_ = null;
if (relationBuilder_ != null) {
relationBuilder_.dispose();
relationBuilder_ = null;
}
internalGetMutablePartition().clear();
useSpark_ = false;
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_DescribeRelationRequest_descriptor;
}
@java.lang.Override
public com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest getDefaultInstanceForType() {
return com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest.getDefaultInstance();
}
@java.lang.Override
public com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest build() {
com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest buildPartial() {
com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest result = new com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.sessionId_ = sessionId_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.relation_ = relationBuilder_ == null
? relation_
: relationBuilder_.build();
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.partition_ = internalGetPartition();
result.partition_.makeImmutable();
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.useSpark_ = useSpark_;
}
}
@java.lang.Override
public Builder mergeFrom(com.dimajix.shaded.protobuf.Message other) {
if (other instanceof com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest) {
return mergeFrom((com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest other) {
if (other == com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest.getDefaultInstance()) return this;
if (!other.getSessionId().isEmpty()) {
sessionId_ = other.sessionId_;
bitField0_ |= 0x00000001;
onChanged();
}
if (other.hasRelation()) {
mergeRelation(other.getRelation());
}
internalGetMutablePartition().mergeFrom(
other.internalGetPartition());
bitField0_ |= 0x00000004;
if (other.getUseSpark() != false) {
setUseSpark(other.getUseSpark());
}
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 10: {
sessionId_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
input.readMessage(
getRelationFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000002;
break;
} // case 18
case 26: {
com.dimajix.shaded.protobuf.MapEntry
partition__ = input.readMessage(
PartitionDefaultEntryHolder.defaultEntry.getParserForType(), extensionRegistry);
internalGetMutablePartition().getMutableMap().put(
partition__.getKey(), partition__.getValue());
bitField0_ |= 0x00000004;
break;
} // case 26
case 32: {
useSpark_ = input.readBool();
bitField0_ |= 0x00000008;
break;
} // case 32
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 java.lang.Object sessionId_ = "";
/**
* string sessionId = 1;
* @return The sessionId.
*/
public java.lang.String getSessionId() {
java.lang.Object ref = sessionId_;
if (!(ref instanceof java.lang.String)) {
com.dimajix.shaded.protobuf.ByteString bs =
(com.dimajix.shaded.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
sessionId_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string sessionId = 1;
* @return The bytes for sessionId.
*/
public com.dimajix.shaded.protobuf.ByteString
getSessionIdBytes() {
java.lang.Object ref = sessionId_;
if (ref instanceof String) {
com.dimajix.shaded.protobuf.ByteString b =
com.dimajix.shaded.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
sessionId_ = b;
return b;
} else {
return (com.dimajix.shaded.protobuf.ByteString) ref;
}
}
/**
* string sessionId = 1;
* @param value The sessionId to set.
* @return This builder for chaining.
*/
public Builder setSessionId(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
sessionId_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* string sessionId = 1;
* @return This builder for chaining.
*/
public Builder clearSessionId() {
sessionId_ = getDefaultInstance().getSessionId();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
* string sessionId = 1;
* @param value The bytes for sessionId to set.
* @return This builder for chaining.
*/
public Builder setSessionIdBytes(
com.dimajix.shaded.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
sessionId_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private com.dimajix.flowman.kernel.proto.RelationIdentifier relation_;
private com.dimajix.shaded.protobuf.SingleFieldBuilderV3<
com.dimajix.flowman.kernel.proto.RelationIdentifier, com.dimajix.flowman.kernel.proto.RelationIdentifier.Builder, com.dimajix.flowman.kernel.proto.RelationIdentifierOrBuilder> relationBuilder_;
/**
* .com.dimajix.flowman.kernel.RelationIdentifier relation = 2;
* @return Whether the relation field is set.
*/
public boolean hasRelation() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* .com.dimajix.flowman.kernel.RelationIdentifier relation = 2;
* @return The relation.
*/
public com.dimajix.flowman.kernel.proto.RelationIdentifier getRelation() {
if (relationBuilder_ == null) {
return relation_ == null ? com.dimajix.flowman.kernel.proto.RelationIdentifier.getDefaultInstance() : relation_;
} else {
return relationBuilder_.getMessage();
}
}
/**
* .com.dimajix.flowman.kernel.RelationIdentifier relation = 2;
*/
public Builder setRelation(com.dimajix.flowman.kernel.proto.RelationIdentifier value) {
if (relationBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
relation_ = value;
} else {
relationBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* .com.dimajix.flowman.kernel.RelationIdentifier relation = 2;
*/
public Builder setRelation(
com.dimajix.flowman.kernel.proto.RelationIdentifier.Builder builderForValue) {
if (relationBuilder_ == null) {
relation_ = builderForValue.build();
} else {
relationBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* .com.dimajix.flowman.kernel.RelationIdentifier relation = 2;
*/
public Builder mergeRelation(com.dimajix.flowman.kernel.proto.RelationIdentifier value) {
if (relationBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0) &&
relation_ != null &&
relation_ != com.dimajix.flowman.kernel.proto.RelationIdentifier.getDefaultInstance()) {
getRelationBuilder().mergeFrom(value);
} else {
relation_ = value;
}
} else {
relationBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* .com.dimajix.flowman.kernel.RelationIdentifier relation = 2;
*/
public Builder clearRelation() {
bitField0_ = (bitField0_ & ~0x00000002);
relation_ = null;
if (relationBuilder_ != null) {
relationBuilder_.dispose();
relationBuilder_ = null;
}
onChanged();
return this;
}
/**
* .com.dimajix.flowman.kernel.RelationIdentifier relation = 2;
*/
public com.dimajix.flowman.kernel.proto.RelationIdentifier.Builder getRelationBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getRelationFieldBuilder().getBuilder();
}
/**
* .com.dimajix.flowman.kernel.RelationIdentifier relation = 2;
*/
public com.dimajix.flowman.kernel.proto.RelationIdentifierOrBuilder getRelationOrBuilder() {
if (relationBuilder_ != null) {
return relationBuilder_.getMessageOrBuilder();
} else {
return relation_ == null ?
com.dimajix.flowman.kernel.proto.RelationIdentifier.getDefaultInstance() : relation_;
}
}
/**
* .com.dimajix.flowman.kernel.RelationIdentifier relation = 2;
*/
private com.dimajix.shaded.protobuf.SingleFieldBuilderV3<
com.dimajix.flowman.kernel.proto.RelationIdentifier, com.dimajix.flowman.kernel.proto.RelationIdentifier.Builder, com.dimajix.flowman.kernel.proto.RelationIdentifierOrBuilder>
getRelationFieldBuilder() {
if (relationBuilder_ == null) {
relationBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.dimajix.flowman.kernel.proto.RelationIdentifier, com.dimajix.flowman.kernel.proto.RelationIdentifier.Builder, com.dimajix.flowman.kernel.proto.RelationIdentifierOrBuilder>(
getRelation(),
getParentForChildren(),
isClean());
relation_ = null;
}
return relationBuilder_;
}
private com.dimajix.shaded.protobuf.MapField<
java.lang.String, java.lang.String> partition_;
private com.dimajix.shaded.protobuf.MapField
internalGetPartition() {
if (partition_ == null) {
return com.google.protobuf.MapField.emptyMapField(
PartitionDefaultEntryHolder.defaultEntry);
}
return partition_;
}
private com.dimajix.shaded.protobuf.MapField
internalGetMutablePartition() {
if (partition_ == null) {
partition_ = com.dimajix.shaded.protobuf.MapField.newMapField(
PartitionDefaultEntryHolder.defaultEntry);
}
if (!partition_.isMutable()) {
partition_ = partition_.copy();
}
bitField0_ |= 0x00000004;
onChanged();
return partition_;
}
public int getPartitionCount() {
return internalGetPartition().getMap().size();
}
/**
* map<string, string> partition = 3;
*/
@java.lang.Override
public boolean containsPartition(
java.lang.String key) {
if (key == null) { throw new NullPointerException("map key"); }
return internalGetPartition().getMap().containsKey(key);
}
/**
* Use {@link #getPartitionMap()} instead.
*/
@java.lang.Override
@java.lang.Deprecated
public java.util.Map getPartition() {
return getPartitionMap();
}
/**
* map<string, string> partition = 3;
*/
@java.lang.Override
public java.util.Map getPartitionMap() {
return internalGetPartition().getMap();
}
/**
* map<string, string> partition = 3;
*/
@java.lang.Override
public /* nullable */
java.lang.String getPartitionOrDefault(
java.lang.String key,
/* nullable */
java.lang.String defaultValue) {
if (key == null) { throw new NullPointerException("map key"); }
java.util.Map map =
internalGetPartition().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
* map<string, string> partition = 3;
*/
@java.lang.Override
public java.lang.String getPartitionOrThrow(
java.lang.String key) {
if (key == null) { throw new NullPointerException("map key"); }
java.util.Map map =
internalGetPartition().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public Builder clearPartition() {
bitField0_ = (bitField0_ & ~0x00000004);
internalGetMutablePartition().getMutableMap()
.clear();
return this;
}
/**
* map<string, string> partition = 3;
*/
public Builder removePartition(
java.lang.String key) {
if (key == null) { throw new NullPointerException("map key"); }
internalGetMutablePartition().getMutableMap()
.remove(key);
return this;
}
/**
* Use alternate mutation accessors instead.
*/
@java.lang.Deprecated
public java.util.Map
getMutablePartition() {
bitField0_ |= 0x00000004;
return internalGetMutablePartition().getMutableMap();
}
/**
* map<string, string> partition = 3;
*/
public Builder putPartition(
java.lang.String key,
java.lang.String value) {
if (key == null) { throw new NullPointerException("map key"); }
if (value == null) { throw new NullPointerException("map value"); }
internalGetMutablePartition().getMutableMap()
.put(key, value);
bitField0_ |= 0x00000004;
return this;
}
/**
* map<string, string> partition = 3;
*/
public Builder putAllPartition(
java.util.Map values) {
internalGetMutablePartition().getMutableMap()
.putAll(values);
bitField0_ |= 0x00000004;
return this;
}
private boolean useSpark_ ;
/**
* bool useSpark = 4;
* @return The useSpark.
*/
@java.lang.Override
public boolean getUseSpark() {
return useSpark_;
}
/**
* bool useSpark = 4;
* @param value The useSpark to set.
* @return This builder for chaining.
*/
public Builder setUseSpark(boolean value) {
useSpark_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
* bool useSpark = 4;
* @return This builder for chaining.
*/
public Builder clearUseSpark() {
bitField0_ = (bitField0_ & ~0x00000008);
useSpark_ = false;
onChanged();
return this;
}
@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.DescribeRelationRequest)
}
// @@protoc_insertion_point(class_scope:com.dimajix.flowman.kernel.relation.DescribeRelationRequest)
private static final com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest();
}
public static com.dimajix.flowman.kernel.proto.relation.DescribeRelationRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.dimajix.shaded.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public DescribeRelationRequest 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.DescribeRelationRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy