Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: build/bazel/remote/execution/v2/remote_execution.proto
package build.bazel.remote.execution.v2;
/**
*
* A `SymlinkNode` represents a symbolic link.
*
*
* Protobuf type {@code build.bazel.remote.execution.v2.SymlinkNode}
*/
public final class SymlinkNode extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:build.bazel.remote.execution.v2.SymlinkNode)
SymlinkNodeOrBuilder {
private static final long serialVersionUID = 0L;
// Use SymlinkNode.newBuilder() to construct.
private SymlinkNode(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private SymlinkNode() {
name_ = "";
target_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new SymlinkNode();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_SymlinkNode_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_SymlinkNode_fieldAccessorTable
.ensureFieldAccessorsInitialized(
build.bazel.remote.execution.v2.SymlinkNode.class, build.bazel.remote.execution.v2.SymlinkNode.Builder.class);
}
public static final int NAME_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
/**
*
* The name of the symlink.
*
*
* string name = 1;
* @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;
}
}
/**
*
* The name of the symlink.
*
*
* string name = 1;
* @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;
}
}
public static final int TARGET_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object target_ = "";
/**
*
* The target path of the symlink. The path separator is a forward slash `/`.
* The target path can be relative to the parent directory of the symlink or
* it can be an absolute path starting with `/`. Support for absolute paths
* can be checked using the [Capabilities][build.bazel.remote.execution.v2.Capabilities]
* API. `..` components are allowed anywhere in the target path as logical
* canonicalization may lead to different behavior in the presence of
* directory symlinks (e.g. `foo/../bar` may not be the same as `bar`).
* To reduce potential cache misses, canonicalization is still recommended
* where this is possible without impacting correctness.
*
* The target path of the symlink. The path separator is a forward slash `/`.
* The target path can be relative to the parent directory of the symlink or
* it can be an absolute path starting with `/`. Support for absolute paths
* can be checked using the [Capabilities][build.bazel.remote.execution.v2.Capabilities]
* API. `..` components are allowed anywhere in the target path as logical
* canonicalization may lead to different behavior in the presence of
* directory symlinks (e.g. `foo/../bar` may not be the same as `bar`).
* To reduce potential cache misses, canonicalization is still recommended
* where this is possible without impacting correctness.
*
*
* string target = 2;
* @return The bytes for target.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getTargetBytes() {
java.lang.Object ref = target_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
target_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int NODE_PROPERTIES_FIELD_NUMBER = 4;
private build.bazel.remote.execution.v2.NodeProperties nodeProperties_;
/**
* .build.bazel.remote.execution.v2.NodeProperties node_properties = 4;
* @return Whether the nodeProperties field is set.
*/
@java.lang.Override
public boolean hasNodeProperties() {
return nodeProperties_ != null;
}
/**
* .build.bazel.remote.execution.v2.NodeProperties node_properties = 4;
* @return The nodeProperties.
*/
@java.lang.Override
public build.bazel.remote.execution.v2.NodeProperties getNodeProperties() {
return nodeProperties_ == null ? build.bazel.remote.execution.v2.NodeProperties.getDefaultInstance() : nodeProperties_;
}
/**
* .build.bazel.remote.execution.v2.NodeProperties node_properties = 4;
*/
@java.lang.Override
public build.bazel.remote.execution.v2.NodePropertiesOrBuilder getNodePropertiesOrBuilder() {
return nodeProperties_ == null ? build.bazel.remote.execution.v2.NodeProperties.getDefaultInstance() : nodeProperties_;
}
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 (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(target_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, target_);
}
if (nodeProperties_ != null) {
output.writeMessage(4, getNodeProperties());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(target_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, target_);
}
if (nodeProperties_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(4, getNodeProperties());
}
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 build.bazel.remote.execution.v2.SymlinkNode)) {
return super.equals(obj);
}
build.bazel.remote.execution.v2.SymlinkNode other = (build.bazel.remote.execution.v2.SymlinkNode) obj;
if (!getName()
.equals(other.getName())) return false;
if (!getTarget()
.equals(other.getTarget())) return false;
if (hasNodeProperties() != other.hasNodeProperties()) return false;
if (hasNodeProperties()) {
if (!getNodeProperties()
.equals(other.getNodeProperties())) 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) + NAME_FIELD_NUMBER;
hash = (53 * hash) + getName().hashCode();
hash = (37 * hash) + TARGET_FIELD_NUMBER;
hash = (53 * hash) + getTarget().hashCode();
if (hasNodeProperties()) {
hash = (37 * hash) + NODE_PROPERTIES_FIELD_NUMBER;
hash = (53 * hash) + getNodeProperties().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static build.bazel.remote.execution.v2.SymlinkNode parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static build.bazel.remote.execution.v2.SymlinkNode parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static build.bazel.remote.execution.v2.SymlinkNode parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static build.bazel.remote.execution.v2.SymlinkNode parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static build.bazel.remote.execution.v2.SymlinkNode parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static build.bazel.remote.execution.v2.SymlinkNode parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static build.bazel.remote.execution.v2.SymlinkNode parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static build.bazel.remote.execution.v2.SymlinkNode 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 build.bazel.remote.execution.v2.SymlinkNode parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static build.bazel.remote.execution.v2.SymlinkNode 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 build.bazel.remote.execution.v2.SymlinkNode parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static build.bazel.remote.execution.v2.SymlinkNode 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(build.bazel.remote.execution.v2.SymlinkNode 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;
}
/**
*
* A `SymlinkNode` represents a symbolic link.
*
*
* Protobuf type {@code build.bazel.remote.execution.v2.SymlinkNode}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:build.bazel.remote.execution.v2.SymlinkNode)
build.bazel.remote.execution.v2.SymlinkNodeOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_SymlinkNode_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_SymlinkNode_fieldAccessorTable
.ensureFieldAccessorsInitialized(
build.bazel.remote.execution.v2.SymlinkNode.class, build.bazel.remote.execution.v2.SymlinkNode.Builder.class);
}
// Construct using build.bazel.remote.execution.v2.SymlinkNode.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
name_ = "";
target_ = "";
nodeProperties_ = null;
if (nodePropertiesBuilder_ != null) {
nodePropertiesBuilder_.dispose();
nodePropertiesBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return build.bazel.remote.execution.v2.RemoteExecutionProto.internal_static_build_bazel_remote_execution_v2_SymlinkNode_descriptor;
}
@java.lang.Override
public build.bazel.remote.execution.v2.SymlinkNode getDefaultInstanceForType() {
return build.bazel.remote.execution.v2.SymlinkNode.getDefaultInstance();
}
@java.lang.Override
public build.bazel.remote.execution.v2.SymlinkNode build() {
build.bazel.remote.execution.v2.SymlinkNode result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public build.bazel.remote.execution.v2.SymlinkNode buildPartial() {
build.bazel.remote.execution.v2.SymlinkNode result = new build.bazel.remote.execution.v2.SymlinkNode(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(build.bazel.remote.execution.v2.SymlinkNode result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.name_ = name_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.target_ = target_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.nodeProperties_ = nodePropertiesBuilder_ == null
? nodeProperties_
: nodePropertiesBuilder_.build();
}
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof build.bazel.remote.execution.v2.SymlinkNode) {
return mergeFrom((build.bazel.remote.execution.v2.SymlinkNode)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(build.bazel.remote.execution.v2.SymlinkNode other) {
if (other == build.bazel.remote.execution.v2.SymlinkNode.getDefaultInstance()) return this;
if (!other.getName().isEmpty()) {
name_ = other.name_;
bitField0_ |= 0x00000001;
onChanged();
}
if (!other.getTarget().isEmpty()) {
target_ = other.target_;
bitField0_ |= 0x00000002;
onChanged();
}
if (other.hasNodeProperties()) {
mergeNodeProperties(other.getNodeProperties());
}
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: {
name_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
target_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 18
case 34: {
input.readMessage(
getNodePropertiesFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000004;
break;
} // case 34
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 java.lang.Object name_ = "";
/**
*
* The name of the symlink.
*
*
* string name = 1;
* @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;
}
}
/**
*
* The name of the symlink.
*
*
* string name = 1;
* @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;
}
}
/**
*
* The name of the symlink.
*
*
* string name = 1;
* @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_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* The name of the symlink.
*
*
* string name = 1;
* @return This builder for chaining.
*/
public Builder clearName() {
name_ = getDefaultInstance().getName();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
* The name of the symlink.
*
*
* string name = 1;
* @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_ |= 0x00000001;
onChanged();
return this;
}
private java.lang.Object target_ = "";
/**
*
* The target path of the symlink. The path separator is a forward slash `/`.
* The target path can be relative to the parent directory of the symlink or
* it can be an absolute path starting with `/`. Support for absolute paths
* can be checked using the [Capabilities][build.bazel.remote.execution.v2.Capabilities]
* API. `..` components are allowed anywhere in the target path as logical
* canonicalization may lead to different behavior in the presence of
* directory symlinks (e.g. `foo/../bar` may not be the same as `bar`).
* To reduce potential cache misses, canonicalization is still recommended
* where this is possible without impacting correctness.
*
* The target path of the symlink. The path separator is a forward slash `/`.
* The target path can be relative to the parent directory of the symlink or
* it can be an absolute path starting with `/`. Support for absolute paths
* can be checked using the [Capabilities][build.bazel.remote.execution.v2.Capabilities]
* API. `..` components are allowed anywhere in the target path as logical
* canonicalization may lead to different behavior in the presence of
* directory symlinks (e.g. `foo/../bar` may not be the same as `bar`).
* To reduce potential cache misses, canonicalization is still recommended
* where this is possible without impacting correctness.
*
*
* string target = 2;
* @return The bytes for target.
*/
public com.google.protobuf.ByteString
getTargetBytes() {
java.lang.Object ref = target_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
target_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The target path of the symlink. The path separator is a forward slash `/`.
* The target path can be relative to the parent directory of the symlink or
* it can be an absolute path starting with `/`. Support for absolute paths
* can be checked using the [Capabilities][build.bazel.remote.execution.v2.Capabilities]
* API. `..` components are allowed anywhere in the target path as logical
* canonicalization may lead to different behavior in the presence of
* directory symlinks (e.g. `foo/../bar` may not be the same as `bar`).
* To reduce potential cache misses, canonicalization is still recommended
* where this is possible without impacting correctness.
*
*
* string target = 2;
* @param value The target to set.
* @return This builder for chaining.
*/
public Builder setTarget(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
target_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
* The target path of the symlink. The path separator is a forward slash `/`.
* The target path can be relative to the parent directory of the symlink or
* it can be an absolute path starting with `/`. Support for absolute paths
* can be checked using the [Capabilities][build.bazel.remote.execution.v2.Capabilities]
* API. `..` components are allowed anywhere in the target path as logical
* canonicalization may lead to different behavior in the presence of
* directory symlinks (e.g. `foo/../bar` may not be the same as `bar`).
* To reduce potential cache misses, canonicalization is still recommended
* where this is possible without impacting correctness.
*
* The target path of the symlink. The path separator is a forward slash `/`.
* The target path can be relative to the parent directory of the symlink or
* it can be an absolute path starting with `/`. Support for absolute paths
* can be checked using the [Capabilities][build.bazel.remote.execution.v2.Capabilities]
* API. `..` components are allowed anywhere in the target path as logical
* canonicalization may lead to different behavior in the presence of
* directory symlinks (e.g. `foo/../bar` may not be the same as `bar`).
* To reduce potential cache misses, canonicalization is still recommended
* where this is possible without impacting correctness.
*