All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse Maven / Gradle / Ivy

There is a newer version: 1.2.0-20241116-110554.8064ac9
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: janusgraph/schema/v1/schema_manager.proto

package org.janusgraph.graphdb.grpc.schema;

/**
 * Protobuf type {@code janusgraph.schema.v1.GetVertexCompositeGraphIndexByNameResponse}
 */
public final class GetVertexCompositeGraphIndexByNameResponse extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:janusgraph.schema.v1.GetVertexCompositeGraphIndexByNameResponse)
    GetVertexCompositeGraphIndexByNameResponseOrBuilder {
private static final long serialVersionUID = 0L;
  // Use GetVertexCompositeGraphIndexByNameResponse.newBuilder() to construct.
  private GetVertexCompositeGraphIndexByNameResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private GetVertexCompositeGraphIndexByNameResponse() {
  }

  @java.lang.Override
  @SuppressWarnings({"unused"})
  protected java.lang.Object newInstance(
      UnusedPrivateParameter unused) {
    return new GetVertexCompositeGraphIndexByNameResponse();
  }

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  private GetVertexCompositeGraphIndexByNameResponse(
      com.google.protobuf.CodedInputStream input,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    this();
    if (extensionRegistry == null) {
      throw new java.lang.NullPointerException();
    }
    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: {
            org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex.Builder subBuilder = null;
            if (index_ != null) {
              subBuilder = index_.toBuilder();
            }
            index_ = input.readMessage(org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex.parser(), extensionRegistry);
            if (subBuilder != null) {
              subBuilder.mergeFrom(index_);
              index_ = subBuilder.buildPartial();
            }

            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 {
      this.unknownFields = unknownFields.build();
      makeExtensionsImmutable();
    }
  }
  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return org.janusgraph.graphdb.grpc.schema.SchemaManager.internal_static_janusgraph_schema_v1_GetVertexCompositeGraphIndexByNameResponse_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return org.janusgraph.graphdb.grpc.schema.SchemaManager.internal_static_janusgraph_schema_v1_GetVertexCompositeGraphIndexByNameResponse_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse.class, org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse.Builder.class);
  }

  public static final int INDEX_FIELD_NUMBER = 1;
  private org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex index_;
  /**
   * .janusgraph.types.v1.VertexCompositeGraphIndex index = 1;
   * @return Whether the index field is set.
   */
  @java.lang.Override
  public boolean hasIndex() {
    return index_ != null;
  }
  /**
   * .janusgraph.types.v1.VertexCompositeGraphIndex index = 1;
   * @return The index.
   */
  @java.lang.Override
  public org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex getIndex() {
    return index_ == null ? org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex.getDefaultInstance() : index_;
  }
  /**
   * .janusgraph.types.v1.VertexCompositeGraphIndex index = 1;
   */
  @java.lang.Override
  public org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndexOrBuilder getIndexOrBuilder() {
    return getIndex();
  }

  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 (index_ != null) {
      output.writeMessage(1, getIndex());
    }
    unknownFields.writeTo(output);
  }

  @java.lang.Override
  public int getSerializedSize() {
    int size = memoizedSize;
    if (size != -1) return size;

    size = 0;
    if (index_ != null) {
      size += com.google.protobuf.CodedOutputStream
        .computeMessageSize(1, getIndex());
    }
    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 org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse)) {
      return super.equals(obj);
    }
    org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse other = (org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse) obj;

    if (hasIndex() != other.hasIndex()) return false;
    if (hasIndex()) {
      if (!getIndex()
          .equals(other.getIndex())) 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 (hasIndex()) {
      hash = (37 * hash) + INDEX_FIELD_NUMBER;
      hash = (53 * hash) + getIndex().hashCode();
    }
    hash = (29 * hash) + unknownFields.hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse parseFrom(
      java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse parseFrom(
      java.nio.ByteBuffer data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse parseFrom(
      com.google.protobuf.ByteString data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse parseFrom(
      byte[] data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse 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 org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseDelimitedWithIOException(PARSER, input);
  }
  public static org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse 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 org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse parseFrom(
      com.google.protobuf.CodedInputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse 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(org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse 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;
  }
  /**
   * Protobuf type {@code janusgraph.schema.v1.GetVertexCompositeGraphIndexByNameResponse}
   */
  public static final class Builder extends
      com.google.protobuf.GeneratedMessageV3.Builder implements
      // @@protoc_insertion_point(builder_implements:janusgraph.schema.v1.GetVertexCompositeGraphIndexByNameResponse)
      org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponseOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return org.janusgraph.graphdb.grpc.schema.SchemaManager.internal_static_janusgraph_schema_v1_GetVertexCompositeGraphIndexByNameResponse_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return org.janusgraph.graphdb.grpc.schema.SchemaManager.internal_static_janusgraph_schema_v1_GetVertexCompositeGraphIndexByNameResponse_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse.class, org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse.Builder.class);
    }

    // Construct using org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse.newBuilder()
    private Builder() {
      maybeForceBuilderInitialization();
    }

    private Builder(
        com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
      super(parent);
      maybeForceBuilderInitialization();
    }
    private void maybeForceBuilderInitialization() {
      if (com.google.protobuf.GeneratedMessageV3
              .alwaysUseFieldBuilders) {
      }
    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      if (indexBuilder_ == null) {
        index_ = null;
      } else {
        index_ = null;
        indexBuilder_ = null;
      }
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor
        getDescriptorForType() {
      return org.janusgraph.graphdb.grpc.schema.SchemaManager.internal_static_janusgraph_schema_v1_GetVertexCompositeGraphIndexByNameResponse_descriptor;
    }

    @java.lang.Override
    public org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse getDefaultInstanceForType() {
      return org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse.getDefaultInstance();
    }

    @java.lang.Override
    public org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse build() {
      org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse buildPartial() {
      org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse result = new org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse(this);
      if (indexBuilder_ == null) {
        result.index_ = index_;
      } else {
        result.index_ = indexBuilder_.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 org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse) {
        return mergeFrom((org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse)other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse other) {
      if (other == org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse.getDefaultInstance()) return this;
      if (other.hasIndex()) {
        mergeIndex(other.getIndex());
      }
      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 {
      org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse parsedMessage = null;
      try {
        parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        parsedMessage = (org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse) e.getUnfinishedMessage();
        throw e.unwrapIOException();
      } finally {
        if (parsedMessage != null) {
          mergeFrom(parsedMessage);
        }
      }
      return this;
    }

    private org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex index_;
    private com.google.protobuf.SingleFieldBuilderV3<
        org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex, org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex.Builder, org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndexOrBuilder> indexBuilder_;
    /**
     * .janusgraph.types.v1.VertexCompositeGraphIndex index = 1;
     * @return Whether the index field is set.
     */
    public boolean hasIndex() {
      return indexBuilder_ != null || index_ != null;
    }
    /**
     * .janusgraph.types.v1.VertexCompositeGraphIndex index = 1;
     * @return The index.
     */
    public org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex getIndex() {
      if (indexBuilder_ == null) {
        return index_ == null ? org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex.getDefaultInstance() : index_;
      } else {
        return indexBuilder_.getMessage();
      }
    }
    /**
     * .janusgraph.types.v1.VertexCompositeGraphIndex index = 1;
     */
    public Builder setIndex(org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex value) {
      if (indexBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        index_ = value;
        onChanged();
      } else {
        indexBuilder_.setMessage(value);
      }

      return this;
    }
    /**
     * .janusgraph.types.v1.VertexCompositeGraphIndex index = 1;
     */
    public Builder setIndex(
        org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex.Builder builderForValue) {
      if (indexBuilder_ == null) {
        index_ = builderForValue.build();
        onChanged();
      } else {
        indexBuilder_.setMessage(builderForValue.build());
      }

      return this;
    }
    /**
     * .janusgraph.types.v1.VertexCompositeGraphIndex index = 1;
     */
    public Builder mergeIndex(org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex value) {
      if (indexBuilder_ == null) {
        if (index_ != null) {
          index_ =
            org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex.newBuilder(index_).mergeFrom(value).buildPartial();
        } else {
          index_ = value;
        }
        onChanged();
      } else {
        indexBuilder_.mergeFrom(value);
      }

      return this;
    }
    /**
     * .janusgraph.types.v1.VertexCompositeGraphIndex index = 1;
     */
    public Builder clearIndex() {
      if (indexBuilder_ == null) {
        index_ = null;
        onChanged();
      } else {
        index_ = null;
        indexBuilder_ = null;
      }

      return this;
    }
    /**
     * .janusgraph.types.v1.VertexCompositeGraphIndex index = 1;
     */
    public org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex.Builder getIndexBuilder() {
      
      onChanged();
      return getIndexFieldBuilder().getBuilder();
    }
    /**
     * .janusgraph.types.v1.VertexCompositeGraphIndex index = 1;
     */
    public org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndexOrBuilder getIndexOrBuilder() {
      if (indexBuilder_ != null) {
        return indexBuilder_.getMessageOrBuilder();
      } else {
        return index_ == null ?
            org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex.getDefaultInstance() : index_;
      }
    }
    /**
     * .janusgraph.types.v1.VertexCompositeGraphIndex index = 1;
     */
    private com.google.protobuf.SingleFieldBuilderV3<
        org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex, org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex.Builder, org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndexOrBuilder> 
        getIndexFieldBuilder() {
      if (indexBuilder_ == null) {
        indexBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
            org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex, org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndex.Builder, org.janusgraph.graphdb.grpc.types.VertexCompositeGraphIndexOrBuilder>(
                getIndex(),
                getParentForChildren(),
                isClean());
        index_ = null;
      }
      return indexBuilder_;
    }
    @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:janusgraph.schema.v1.GetVertexCompositeGraphIndexByNameResponse)
  }

  // @@protoc_insertion_point(class_scope:janusgraph.schema.v1.GetVertexCompositeGraphIndexByNameResponse)
  private static final org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse DEFAULT_INSTANCE;
  static {
    DEFAULT_INSTANCE = new org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse();
  }

  public static org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static final com.google.protobuf.Parser
      PARSER = new com.google.protobuf.AbstractParser() {
    @java.lang.Override
    public GetVertexCompositeGraphIndexByNameResponse parsePartialFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return new GetVertexCompositeGraphIndexByNameResponse(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 org.janusgraph.graphdb.grpc.schema.GetVertexCompositeGraphIndexByNameResponse getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy