Please wait. This can take some minutes ...
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.
io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/config/bootstrap/v2/bootstrap.proto
package io.envoyproxy.envoy.config.bootstrap.v2;
/**
*
* Runtime :ref:`configuration overview <config_runtime>`.
*
*
* Protobuf type {@code envoy.config.bootstrap.v2.LayeredRuntime}
*/
public final class LayeredRuntime extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:envoy.config.bootstrap.v2.LayeredRuntime)
LayeredRuntimeOrBuilder {
private static final long serialVersionUID = 0L;
// Use LayeredRuntime.newBuilder() to construct.
private LayeredRuntime(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private LayeredRuntime() {
layers_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new LayeredRuntime();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private LayeredRuntime(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
layers_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000001;
}
layers_.add(
input.readMessage(io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer.parser(), extensionRegistry));
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000001) != 0)) {
layers_ = java.util.Collections.unmodifiableList(layers_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.envoyproxy.envoy.config.bootstrap.v2.BootstrapProto.internal_static_envoy_config_bootstrap_v2_LayeredRuntime_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.envoyproxy.envoy.config.bootstrap.v2.BootstrapProto.internal_static_envoy_config_bootstrap_v2_LayeredRuntime_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime.class, io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime.Builder.class);
}
public static final int LAYERS_FIELD_NUMBER = 1;
private java.util.List layers_;
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public java.util.List getLayersList() {
return layers_;
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public java.util.List extends io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayerOrBuilder>
getLayersOrBuilderList() {
return layers_;
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public int getLayersCount() {
return layers_.size();
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer getLayers(int index) {
return layers_.get(index);
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayerOrBuilder getLayersOrBuilder(
int index) {
return layers_.get(index);
}
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 {
for (int i = 0; i < layers_.size(); i++) {
output.writeMessage(1, layers_.get(i));
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < layers_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, layers_.get(i));
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime)) {
return super.equals(obj);
}
io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime other = (io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime) obj;
if (!getLayersList()
.equals(other.getLayersList())) return false;
if (!unknownFields.equals(other.unknownFields)) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (getLayersCount() > 0) {
hash = (37 * hash) + LAYERS_FIELD_NUMBER;
hash = (53 * hash) + getLayersList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime 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 io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime 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 io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime 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(io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime 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;
}
/**
*
* Runtime :ref:`configuration overview <config_runtime>`.
*
*
* Protobuf type {@code envoy.config.bootstrap.v2.LayeredRuntime}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:envoy.config.bootstrap.v2.LayeredRuntime)
io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntimeOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.envoyproxy.envoy.config.bootstrap.v2.BootstrapProto.internal_static_envoy_config_bootstrap_v2_LayeredRuntime_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.envoyproxy.envoy.config.bootstrap.v2.BootstrapProto.internal_static_envoy_config_bootstrap_v2_LayeredRuntime_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime.class, io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime.Builder.class);
}
// Construct using io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getLayersFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (layersBuilder_ == null) {
layers_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
} else {
layersBuilder_.clear();
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.envoyproxy.envoy.config.bootstrap.v2.BootstrapProto.internal_static_envoy_config_bootstrap_v2_LayeredRuntime_descriptor;
}
@java.lang.Override
public io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime getDefaultInstanceForType() {
return io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime.getDefaultInstance();
}
@java.lang.Override
public io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime build() {
io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime buildPartial() {
io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime result = new io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime(this);
int from_bitField0_ = bitField0_;
if (layersBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)) {
layers_ = java.util.Collections.unmodifiableList(layers_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.layers_ = layers_;
} else {
result.layers_ = layersBuilder_.build();
}
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime) {
return mergeFrom((io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime other) {
if (other == io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime.getDefaultInstance()) return this;
if (layersBuilder_ == null) {
if (!other.layers_.isEmpty()) {
if (layers_.isEmpty()) {
layers_ = other.layers_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureLayersIsMutable();
layers_.addAll(other.layers_);
}
onChanged();
}
} else {
if (!other.layers_.isEmpty()) {
if (layersBuilder_.isEmpty()) {
layersBuilder_.dispose();
layersBuilder_ = null;
layers_ = other.layers_;
bitField0_ = (bitField0_ & ~0x00000001);
layersBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getLayersFieldBuilder() : null;
} else {
layersBuilder_.addAllMessages(other.layers_);
}
}
}
this.mergeUnknownFields(other.unknownFields);
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 {
io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.util.List layers_ =
java.util.Collections.emptyList();
private void ensureLayersIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
layers_ = new java.util.ArrayList(layers_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer, io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer.Builder, io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayerOrBuilder> layersBuilder_;
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public java.util.List getLayersList() {
if (layersBuilder_ == null) {
return java.util.Collections.unmodifiableList(layers_);
} else {
return layersBuilder_.getMessageList();
}
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public int getLayersCount() {
if (layersBuilder_ == null) {
return layers_.size();
} else {
return layersBuilder_.getCount();
}
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer getLayers(int index) {
if (layersBuilder_ == null) {
return layers_.get(index);
} else {
return layersBuilder_.getMessage(index);
}
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public Builder setLayers(
int index, io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer value) {
if (layersBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLayersIsMutable();
layers_.set(index, value);
onChanged();
} else {
layersBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public Builder setLayers(
int index, io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer.Builder builderForValue) {
if (layersBuilder_ == null) {
ensureLayersIsMutable();
layers_.set(index, builderForValue.build());
onChanged();
} else {
layersBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public Builder addLayers(io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer value) {
if (layersBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLayersIsMutable();
layers_.add(value);
onChanged();
} else {
layersBuilder_.addMessage(value);
}
return this;
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public Builder addLayers(
int index, io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer value) {
if (layersBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLayersIsMutable();
layers_.add(index, value);
onChanged();
} else {
layersBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public Builder addLayers(
io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer.Builder builderForValue) {
if (layersBuilder_ == null) {
ensureLayersIsMutable();
layers_.add(builderForValue.build());
onChanged();
} else {
layersBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public Builder addLayers(
int index, io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer.Builder builderForValue) {
if (layersBuilder_ == null) {
ensureLayersIsMutable();
layers_.add(index, builderForValue.build());
onChanged();
} else {
layersBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public Builder addAllLayers(
java.lang.Iterable extends io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer> values) {
if (layersBuilder_ == null) {
ensureLayersIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, layers_);
onChanged();
} else {
layersBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public Builder clearLayers() {
if (layersBuilder_ == null) {
layers_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
layersBuilder_.clear();
}
return this;
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public Builder removeLayers(int index) {
if (layersBuilder_ == null) {
ensureLayersIsMutable();
layers_.remove(index);
onChanged();
} else {
layersBuilder_.remove(index);
}
return this;
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer.Builder getLayersBuilder(
int index) {
return getLayersFieldBuilder().getBuilder(index);
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayerOrBuilder getLayersOrBuilder(
int index) {
if (layersBuilder_ == null) {
return layers_.get(index); } else {
return layersBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public java.util.List extends io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayerOrBuilder>
getLayersOrBuilderList() {
if (layersBuilder_ != null) {
return layersBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(layers_);
}
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer.Builder addLayersBuilder() {
return getLayersFieldBuilder().addBuilder(
io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer.getDefaultInstance());
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer.Builder addLayersBuilder(
int index) {
return getLayersFieldBuilder().addBuilder(
index, io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer.getDefaultInstance());
}
/**
*
* The :ref:`layers <config_runtime_layering>` of the runtime. This is ordered
* such that later layers in the list overlay earlier entries.
*
*
* repeated .envoy.config.bootstrap.v2.RuntimeLayer layers = 1;
*/
public java.util.List
getLayersBuilderList() {
return getLayersFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer, io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer.Builder, io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayerOrBuilder>
getLayersFieldBuilder() {
if (layersBuilder_ == null) {
layersBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer, io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayer.Builder, io.envoyproxy.envoy.config.bootstrap.v2.RuntimeLayerOrBuilder>(
layers_,
((bitField0_ & 0x00000001) != 0),
getParentForChildren(),
isClean());
layers_ = null;
}
return layersBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:envoy.config.bootstrap.v2.LayeredRuntime)
}
// @@protoc_insertion_point(class_scope:envoy.config.bootstrap.v2.LayeredRuntime)
private static final io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime();
}
public static io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public LayeredRuntime parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new LayeredRuntime(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public io.envoyproxy.envoy.config.bootstrap.v2.LayeredRuntime getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}