Tabnine Logo
MapField.getMutableList
Code IndexAdd Tabnine to your IDE (free)

How to use
getMutableList
method
in
com.google.protobuf.MapField

Best Java code snippets using com.google.protobuf.MapField.getMutableList (Showing top 9 results out of 315)

origin: com.google.protobuf/protobuf-java

@Override
public void clear(Builder builder) {
 getMutableMapField(builder).getMutableList().clear();
}
origin: com.google.protobuf/protobuf-java

@Override
public void setRepeated(Builder builder, int index, Object value) {
 getMutableMapField(builder).getMutableList().set(index, (Message) value);
}
origin: com.google.protobuf/protobuf-java

@Override
public void addRepeated(Builder builder, Object value) {
 getMutableMapField(builder).getMutableList().add((Message) value);
}
origin: com.google.protobuf/protobuf-java

@Override
public void clear(Builder builder) {
 getMutableMapField(builder).getMutableList().clear();
}
origin: com.google.protobuf/protobuf-java

@Override
public void addRepeated(Builder builder, Object value) {
 getMutableMapField(builder).getMutableList().add(coerceType((Message) value));
}
origin: com.google.protobuf/protobuf-java

@Override
public void setRepeated(Builder builder, int index, Object value) {
 getMutableMapField(builder).getMutableList().set(index, coerceType((Message) value));
}
origin: yeriomin/play-store-api

@Override
public void clear(Builder builder) {
 getMutableMapField(builder).getMutableList().clear();
}
origin: yeriomin/play-store-api

@Override
public void setRepeated(Builder builder, int index, Object value) {
 getMutableMapField(builder).getMutableList().set(index, (Message) value);
}
origin: yeriomin/play-store-api

@Override
public void addRepeated(Builder builder, Object value) {
 getMutableMapField(builder).getMutableList().add((Message) value);
}
com.google.protobufMapFieldgetMutableList

Javadoc

Gets a mutable List view of this MapField.

Popular methods of MapField

  • getMap
    Returns the content of this MapField as a read-only Map.
  • getMutableMap
    Gets a mutable Map view of this MapField.
  • isMutable
    Returns whether this field can be modified.
  • clear
  • copy
    Returns a deep copy of this MapField.
  • emptyMapField
    Returns an immutable empty MapField.
  • makeImmutable
    Makes this list immutable. All subsequent modifications will throw an UnsupportedOperationException.
  • mergeFrom
  • newMapField
    Creates a new mutable empty MapField.
  • equals
  • hashCode
  • <init>
  • hashCode,
  • <init>,
  • convertKeyAndValueToMessage,
  • convertListToMap,
  • convertMapToList,
  • convertMessageToKeyAndValue,
  • getList,
  • getMapEntryMessageDefaultInstance

Popular in Java

  • Creating JSON documents from java classes using gson
  • runOnUiThread (Activity)
  • startActivity (Activity)
  • compareTo (BigDecimal)
  • Kernel (java.awt.image)
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now