Package com.google.api.expr.v1alpha1
Interface MapValueOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MapValue
,MapValue.Builder
public interface MapValueOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MapValue.Entry
getEntries(int index)
The set of map entries.int
getEntriesCount()
The set of map entries.java.util.List<MapValue.Entry>
getEntriesList()
The set of map entries.MapValue.EntryOrBuilder
getEntriesOrBuilder(int index)
The set of map entries.java.util.List<? extends MapValue.EntryOrBuilder>
getEntriesOrBuilderList()
The set of map entries.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEntriesList
java.util.List<MapValue.Entry> getEntriesList()
The set of map entries. CEL has fewer restrictions on keys, so a protobuf map represenation cannot be used.
repeated .google.api.expr.v1alpha1.MapValue.Entry entries = 1;
-
getEntries
MapValue.Entry getEntries(int index)
The set of map entries. CEL has fewer restrictions on keys, so a protobuf map represenation cannot be used.
repeated .google.api.expr.v1alpha1.MapValue.Entry entries = 1;
-
getEntriesCount
int getEntriesCount()
The set of map entries. CEL has fewer restrictions on keys, so a protobuf map represenation cannot be used.
repeated .google.api.expr.v1alpha1.MapValue.Entry entries = 1;
-
getEntriesOrBuilderList
java.util.List<? extends MapValue.EntryOrBuilder> getEntriesOrBuilderList()
The set of map entries. CEL has fewer restrictions on keys, so a protobuf map represenation cannot be used.
repeated .google.api.expr.v1alpha1.MapValue.Entry entries = 1;
-
getEntriesOrBuilder
MapValue.EntryOrBuilder getEntriesOrBuilder(int index)
The set of map entries. CEL has fewer restrictions on keys, so a protobuf map represenation cannot be used.
repeated .google.api.expr.v1alpha1.MapValue.Entry entries = 1;
-
-