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

com.google.protobuf.ListFieldSchema Maven / Gradle / Ivy

Go to download

Core Protocol Buffers library. Protocol Buffers are a way of encoding structured data in an efficient yet extensible format.

There is a newer version: 4.29.0-RC2
Show newest version
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc.  All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd

package com.google.protobuf;

import java.util.List;

/**
 * Utility class that aids in properly manipulating list fields for either the lite or full runtime.
 */
@CheckReturnValue
interface ListFieldSchema {

   List mutableListAt(Object msg, long offset);

  void makeImmutableListAt(Object msg, long offset);

   void mergeListsAt(Object msg, Object otherMsg, long offset);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy