com.dimajix.flowman.kernel.proto.LogLocation Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: logging.proto
package com.dimajix.flowman.kernel.proto;
/**
* Protobuf type {@code com.dimajix.flowman.kernel.LogLocation}
*/
public final class LogLocation extends
com.dimajix.shaded.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:com.dimajix.flowman.kernel.LogLocation)
LogLocationOrBuilder {
private static final long serialVersionUID = 0L;
// Use LogLocation.newBuilder() to construct.
private LogLocation(com.dimajix.shaded.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private LogLocation() {
file_ = "";
declaringClass_ = "";
methodName_ = "";
fileName_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new LogLocation();
}
public static final com.dimajix.shaded.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.dimajix.flowman.kernel.proto.LoggingProto.internal_static_com_dimajix_flowman_kernel_LogLocation_descriptor;
}
@java.lang.Override
protected com.dimajix.shaded.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.dimajix.flowman.kernel.proto.LoggingProto.internal_static_com_dimajix_flowman_kernel_LogLocation_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.dimajix.flowman.kernel.proto.LogLocation.class, com.dimajix.flowman.kernel.proto.LogLocation.Builder.class);
}
private int bitField0_;
public static final int FILE_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object file_ = "";
/**
* optional string file = 1;
* @return Whether the file field is set.
*/
@java.lang.Override
public boolean hasFile() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* optional string file = 1;
* @return The file.
*/
@java.lang.Override
public java.lang.String getFile() {
java.lang.Object ref = file_;
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();
file_ = s;
return s;
}
}
/**
* optional string file = 1;
* @return The bytes for file.
*/
@java.lang.Override
public com.dimajix.shaded.protobuf.ByteString
getFileBytes() {
java.lang.Object ref = file_;
if (ref instanceof java.lang.String) {
com.dimajix.shaded.protobuf.ByteString b =
com.dimajix.shaded.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
file_ = b;
return b;
} else {
return (com.dimajix.shaded.protobuf.ByteString) ref;
}
}
public static final int DECLARINGCLASS_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object declaringClass_ = "";
/**
* optional string declaringClass = 2;
* @return Whether the declaringClass field is set.
*/
@java.lang.Override
public boolean hasDeclaringClass() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* optional string declaringClass = 2;
* @return The declaringClass.
*/
@java.lang.Override
public java.lang.String getDeclaringClass() {
java.lang.Object ref = declaringClass_;
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();
declaringClass_ = s;
return s;
}
}
/**
* optional string declaringClass = 2;
* @return The bytes for declaringClass.
*/
@java.lang.Override
public com.dimajix.shaded.protobuf.ByteString
getDeclaringClassBytes() {
java.lang.Object ref = declaringClass_;
if (ref instanceof java.lang.String) {
com.dimajix.shaded.protobuf.ByteString b =
com.dimajix.shaded.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
declaringClass_ = b;
return b;
} else {
return (com.dimajix.shaded.protobuf.ByteString) ref;
}
}
public static final int METHODNAME_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private volatile java.lang.Object methodName_ = "";
/**
* optional string methodName = 3;
* @return Whether the methodName field is set.
*/
@java.lang.Override
public boolean hasMethodName() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
* optional string methodName = 3;
* @return The methodName.
*/
@java.lang.Override
public java.lang.String getMethodName() {
java.lang.Object ref = methodName_;
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();
methodName_ = s;
return s;
}
}
/**
* optional string methodName = 3;
* @return The bytes for methodName.
*/
@java.lang.Override
public com.dimajix.shaded.protobuf.ByteString
getMethodNameBytes() {
java.lang.Object ref = methodName_;
if (ref instanceof java.lang.String) {
com.dimajix.shaded.protobuf.ByteString b =
com.dimajix.shaded.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
methodName_ = b;
return b;
} else {
return (com.dimajix.shaded.protobuf.ByteString) ref;
}
}
public static final int FILENAME_FIELD_NUMBER = 4;
@SuppressWarnings("serial")
private volatile java.lang.Object fileName_ = "";
/**
* optional string fileName = 4;
* @return Whether the fileName field is set.
*/
@java.lang.Override
public boolean hasFileName() {
return ((bitField0_ & 0x00000008) != 0);
}
/**
* optional string fileName = 4;
* @return The fileName.
*/
@java.lang.Override
public java.lang.String getFileName() {
java.lang.Object ref = fileName_;
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();
fileName_ = s;
return s;
}
}
/**
* optional string fileName = 4;
* @return The bytes for fileName.
*/
@java.lang.Override
public com.dimajix.shaded.protobuf.ByteString
getFileNameBytes() {
java.lang.Object ref = fileName_;
if (ref instanceof java.lang.String) {
com.dimajix.shaded.protobuf.ByteString b =
com.dimajix.shaded.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
fileName_ = b;
return b;
} else {
return (com.dimajix.shaded.protobuf.ByteString) ref;
}
}
public static final int LINENUMBER_FIELD_NUMBER = 5;
private int lineNumber_ = 0;
/**
* optional int32 lineNumber = 5;
* @return Whether the lineNumber field is set.
*/
@java.lang.Override
public boolean hasLineNumber() {
return ((bitField0_ & 0x00000010) != 0);
}
/**
* optional int32 lineNumber = 5;
* @return The lineNumber.
*/
@java.lang.Override
public int getLineNumber() {
return lineNumber_;
}
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 (((bitField0_ & 0x00000001) != 0)) {
com.dimajix.shaded.protobuf.GeneratedMessageV3.writeString(output, 1, file_);
}
if (((bitField0_ & 0x00000002) != 0)) {
com.dimajix.shaded.protobuf.GeneratedMessageV3.writeString(output, 2, declaringClass_);
}
if (((bitField0_ & 0x00000004) != 0)) {
com.dimajix.shaded.protobuf.GeneratedMessageV3.writeString(output, 3, methodName_);
}
if (((bitField0_ & 0x00000008) != 0)) {
com.dimajix.shaded.protobuf.GeneratedMessageV3.writeString(output, 4, fileName_);
}
if (((bitField0_ & 0x00000010) != 0)) {
output.writeInt32(5, lineNumber_);
}
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.dimajix.shaded.protobuf.GeneratedMessageV3.computeStringSize(1, file_);
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.dimajix.shaded.protobuf.GeneratedMessageV3.computeStringSize(2, declaringClass_);
}
if (((bitField0_ & 0x00000004) != 0)) {
size += com.dimajix.shaded.protobuf.GeneratedMessageV3.computeStringSize(3, methodName_);
}
if (((bitField0_ & 0x00000008) != 0)) {
size += com.dimajix.shaded.protobuf.GeneratedMessageV3.computeStringSize(4, fileName_);
}
if (((bitField0_ & 0x00000010) != 0)) {
size += com.dimajix.shaded.protobuf.CodedOutputStream
.computeInt32Size(5, lineNumber_);
}
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.LogLocation)) {
return super.equals(obj);
}
com.dimajix.flowman.kernel.proto.LogLocation other = (com.dimajix.flowman.kernel.proto.LogLocation) obj;
if (hasFile() != other.hasFile()) return false;
if (hasFile()) {
if (!getFile()
.equals(other.getFile())) return false;
}
if (hasDeclaringClass() != other.hasDeclaringClass()) return false;
if (hasDeclaringClass()) {
if (!getDeclaringClass()
.equals(other.getDeclaringClass())) return false;
}
if (hasMethodName() != other.hasMethodName()) return false;
if (hasMethodName()) {
if (!getMethodName()
.equals(other.getMethodName())) return false;
}
if (hasFileName() != other.hasFileName()) return false;
if (hasFileName()) {
if (!getFileName()
.equals(other.getFileName())) return false;
}
if (hasLineNumber() != other.hasLineNumber()) return false;
if (hasLineNumber()) {
if (getLineNumber()
!= other.getLineNumber()) 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 (hasFile()) {
hash = (37 * hash) + FILE_FIELD_NUMBER;
hash = (53 * hash) + getFile().hashCode();
}
if (hasDeclaringClass()) {
hash = (37 * hash) + DECLARINGCLASS_FIELD_NUMBER;
hash = (53 * hash) + getDeclaringClass().hashCode();
}
if (hasMethodName()) {
hash = (37 * hash) + METHODNAME_FIELD_NUMBER;
hash = (53 * hash) + getMethodName().hashCode();
}
if (hasFileName()) {
hash = (37 * hash) + FILENAME_FIELD_NUMBER;
hash = (53 * hash) + getFileName().hashCode();
}
if (hasLineNumber()) {
hash = (37 * hash) + LINENUMBER_FIELD_NUMBER;
hash = (53 * hash) + getLineNumber();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.dimajix.flowman.kernel.proto.LogLocation parseFrom(
java.nio.ByteBuffer data)
throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.dimajix.flowman.kernel.proto.LogLocation 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.LogLocation parseFrom(
com.dimajix.shaded.protobuf.ByteString data)
throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.dimajix.flowman.kernel.proto.LogLocation 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.LogLocation parseFrom(byte[] data)
throws com.dimajix.shaded.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.dimajix.flowman.kernel.proto.LogLocation 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.LogLocation parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.dimajix.flowman.kernel.proto.LogLocation 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.LogLocation parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.dimajix.flowman.kernel.proto.LogLocation 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.LogLocation 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.LogLocation 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.LogLocation 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.LogLocation}
*/
public static final class Builder extends
com.dimajix.shaded.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:com.dimajix.flowman.kernel.LogLocation)
com.dimajix.flowman.kernel.proto.LogLocationOrBuilder {
public static final com.dimajix.shaded.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.dimajix.flowman.kernel.proto.LoggingProto.internal_static_com_dimajix_flowman_kernel_LogLocation_descriptor;
}
@java.lang.Override
protected com.dimajix.shaded.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.dimajix.flowman.kernel.proto.LoggingProto.internal_static_com_dimajix_flowman_kernel_LogLocation_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.dimajix.flowman.kernel.proto.LogLocation.class, com.dimajix.flowman.kernel.proto.LogLocation.Builder.class);
}
// Construct using com.dimajix.flowman.kernel.proto.LogLocation.newBuilder()
private Builder() {
}
private Builder(
com.dimajix.shaded.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
file_ = "";
declaringClass_ = "";
methodName_ = "";
fileName_ = "";
lineNumber_ = 0;
return this;
}
@java.lang.Override
public com.dimajix.shaded.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.dimajix.flowman.kernel.proto.LoggingProto.internal_static_com_dimajix_flowman_kernel_LogLocation_descriptor;
}
@java.lang.Override
public com.dimajix.flowman.kernel.proto.LogLocation getDefaultInstanceForType() {
return com.dimajix.flowman.kernel.proto.LogLocation.getDefaultInstance();
}
@java.lang.Override
public com.dimajix.flowman.kernel.proto.LogLocation build() {
com.dimajix.flowman.kernel.proto.LogLocation result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.dimajix.flowman.kernel.proto.LogLocation buildPartial() {
com.dimajix.flowman.kernel.proto.LogLocation result = new com.dimajix.flowman.kernel.proto.LogLocation(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(com.dimajix.flowman.kernel.proto.LogLocation result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.file_ = file_;
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.declaringClass_ = declaringClass_;
to_bitField0_ |= 0x00000002;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.methodName_ = methodName_;
to_bitField0_ |= 0x00000004;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.fileName_ = fileName_;
to_bitField0_ |= 0x00000008;
}
if (((from_bitField0_ & 0x00000010) != 0)) {
result.lineNumber_ = lineNumber_;
to_bitField0_ |= 0x00000010;
}
result.bitField0_ |= to_bitField0_;
}
@java.lang.Override
public Builder mergeFrom(com.dimajix.shaded.protobuf.Message other) {
if (other instanceof com.dimajix.flowman.kernel.proto.LogLocation) {
return mergeFrom((com.dimajix.flowman.kernel.proto.LogLocation)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.dimajix.flowman.kernel.proto.LogLocation other) {
if (other == com.dimajix.flowman.kernel.proto.LogLocation.getDefaultInstance()) return this;
if (other.hasFile()) {
file_ = other.file_;
bitField0_ |= 0x00000001;
onChanged();
}
if (other.hasDeclaringClass()) {
declaringClass_ = other.declaringClass_;
bitField0_ |= 0x00000002;
onChanged();
}
if (other.hasMethodName()) {
methodName_ = other.methodName_;
bitField0_ |= 0x00000004;
onChanged();
}
if (other.hasFileName()) {
fileName_ = other.fileName_;
bitField0_ |= 0x00000008;
onChanged();
}
if (other.hasLineNumber()) {
setLineNumber(other.getLineNumber());
}
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: {
file_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
declaringClass_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 18
case 26: {
methodName_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000004;
break;
} // case 26
case 34: {
fileName_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000008;
break;
} // case 34
case 40: {
lineNumber_ = input.readInt32();
bitField0_ |= 0x00000010;
break;
} // case 40
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 file_ = "";
/**
* optional string file = 1;
* @return Whether the file field is set.
*/
public boolean hasFile() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* optional string file = 1;
* @return The file.
*/
public java.lang.String getFile() {
java.lang.Object ref = file_;
if (!(ref instanceof java.lang.String)) {
com.dimajix.shaded.protobuf.ByteString bs =
(com.dimajix.shaded.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
file_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string file = 1;
* @return The bytes for file.
*/
public com.dimajix.shaded.protobuf.ByteString
getFileBytes() {
java.lang.Object ref = file_;
if (ref instanceof String) {
com.dimajix.shaded.protobuf.ByteString b =
com.dimajix.shaded.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
file_ = b;
return b;
} else {
return (com.dimajix.shaded.protobuf.ByteString) ref;
}
}
/**
* optional string file = 1;
* @param value The file to set.
* @return This builder for chaining.
*/
public Builder setFile(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
file_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* optional string file = 1;
* @return This builder for chaining.
*/
public Builder clearFile() {
file_ = getDefaultInstance().getFile();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
* optional string file = 1;
* @param value The bytes for file to set.
* @return This builder for chaining.
*/
public Builder setFileBytes(
com.dimajix.shaded.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
file_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private java.lang.Object declaringClass_ = "";
/**
* optional string declaringClass = 2;
* @return Whether the declaringClass field is set.
*/
public boolean hasDeclaringClass() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* optional string declaringClass = 2;
* @return The declaringClass.
*/
public java.lang.String getDeclaringClass() {
java.lang.Object ref = declaringClass_;
if (!(ref instanceof java.lang.String)) {
com.dimajix.shaded.protobuf.ByteString bs =
(com.dimajix.shaded.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
declaringClass_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string declaringClass = 2;
* @return The bytes for declaringClass.
*/
public com.dimajix.shaded.protobuf.ByteString
getDeclaringClassBytes() {
java.lang.Object ref = declaringClass_;
if (ref instanceof String) {
com.dimajix.shaded.protobuf.ByteString b =
com.dimajix.shaded.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
declaringClass_ = b;
return b;
} else {
return (com.dimajix.shaded.protobuf.ByteString) ref;
}
}
/**
* optional string declaringClass = 2;
* @param value The declaringClass to set.
* @return This builder for chaining.
*/
public Builder setDeclaringClass(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
declaringClass_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* optional string declaringClass = 2;
* @return This builder for chaining.
*/
public Builder clearDeclaringClass() {
declaringClass_ = getDefaultInstance().getDeclaringClass();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
* optional string declaringClass = 2;
* @param value The bytes for declaringClass to set.
* @return This builder for chaining.
*/
public Builder setDeclaringClassBytes(
com.dimajix.shaded.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
declaringClass_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private java.lang.Object methodName_ = "";
/**
* optional string methodName = 3;
* @return Whether the methodName field is set.
*/
public boolean hasMethodName() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
* optional string methodName = 3;
* @return The methodName.
*/
public java.lang.String getMethodName() {
java.lang.Object ref = methodName_;
if (!(ref instanceof java.lang.String)) {
com.dimajix.shaded.protobuf.ByteString bs =
(com.dimajix.shaded.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
methodName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string methodName = 3;
* @return The bytes for methodName.
*/
public com.dimajix.shaded.protobuf.ByteString
getMethodNameBytes() {
java.lang.Object ref = methodName_;
if (ref instanceof String) {
com.dimajix.shaded.protobuf.ByteString b =
com.dimajix.shaded.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
methodName_ = b;
return b;
} else {
return (com.dimajix.shaded.protobuf.ByteString) ref;
}
}
/**
* optional string methodName = 3;
* @param value The methodName to set.
* @return This builder for chaining.
*/
public Builder setMethodName(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
methodName_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
* optional string methodName = 3;
* @return This builder for chaining.
*/
public Builder clearMethodName() {
methodName_ = getDefaultInstance().getMethodName();
bitField0_ = (bitField0_ & ~0x00000004);
onChanged();
return this;
}
/**
* optional string methodName = 3;
* @param value The bytes for methodName to set.
* @return This builder for chaining.
*/
public Builder setMethodNameBytes(
com.dimajix.shaded.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
methodName_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
private java.lang.Object fileName_ = "";
/**
* optional string fileName = 4;
* @return Whether the fileName field is set.
*/
public boolean hasFileName() {
return ((bitField0_ & 0x00000008) != 0);
}
/**
* optional string fileName = 4;
* @return The fileName.
*/
public java.lang.String getFileName() {
java.lang.Object ref = fileName_;
if (!(ref instanceof java.lang.String)) {
com.dimajix.shaded.protobuf.ByteString bs =
(com.dimajix.shaded.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
fileName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string fileName = 4;
* @return The bytes for fileName.
*/
public com.dimajix.shaded.protobuf.ByteString
getFileNameBytes() {
java.lang.Object ref = fileName_;
if (ref instanceof String) {
com.dimajix.shaded.protobuf.ByteString b =
com.dimajix.shaded.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
fileName_ = b;
return b;
} else {
return (com.dimajix.shaded.protobuf.ByteString) ref;
}
}
/**
* optional string fileName = 4;
* @param value The fileName to set.
* @return This builder for chaining.
*/
public Builder setFileName(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
fileName_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
* optional string fileName = 4;
* @return This builder for chaining.
*/
public Builder clearFileName() {
fileName_ = getDefaultInstance().getFileName();
bitField0_ = (bitField0_ & ~0x00000008);
onChanged();
return this;
}
/**
* optional string fileName = 4;
* @param value The bytes for fileName to set.
* @return This builder for chaining.
*/
public Builder setFileNameBytes(
com.dimajix.shaded.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
fileName_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
private int lineNumber_ ;
/**
* optional int32 lineNumber = 5;
* @return Whether the lineNumber field is set.
*/
@java.lang.Override
public boolean hasLineNumber() {
return ((bitField0_ & 0x00000010) != 0);
}
/**
* optional int32 lineNumber = 5;
* @return The lineNumber.
*/
@java.lang.Override
public int getLineNumber() {
return lineNumber_;
}
/**
* optional int32 lineNumber = 5;
* @param value The lineNumber to set.
* @return This builder for chaining.
*/
public Builder setLineNumber(int value) {
lineNumber_ = value;
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
* optional int32 lineNumber = 5;
* @return This builder for chaining.
*/
public Builder clearLineNumber() {
bitField0_ = (bitField0_ & ~0x00000010);
lineNumber_ = 0;
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.LogLocation)
}
// @@protoc_insertion_point(class_scope:com.dimajix.flowman.kernel.LogLocation)
private static final com.dimajix.flowman.kernel.proto.LogLocation DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.dimajix.flowman.kernel.proto.LogLocation();
}
public static com.dimajix.flowman.kernel.proto.LogLocation getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.dimajix.shaded.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public LogLocation 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.LogLocation getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy