Package com.google.api.expr.v1alpha1
Interface MapValue.EntryOrBuilder
- All Superinterfaces:
 com.google.protobuf.MessageLiteOrBuilder
- All Known Implementing Classes:
 MapValue.Entry,MapValue.Entry.Builder
- Enclosing class:
 - MapValue
 
public static interface MapValue.EntryOrBuilder
extends com.google.protobuf.MessageLiteOrBuilder
- 
Method Summary
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
getDefaultInstanceForType, isInitialized 
- 
Method Details
- 
hasKey
boolean hasKey()The key. Must be unique with in the map. Currently only boolean, int, uint, and string values can be keys.
.google.api.expr.v1alpha1.Value key = 1 [json_name = "key"];- Returns:
 - Whether the key field is set.
 
 - 
getKey
Value getKey()The key. Must be unique with in the map. Currently only boolean, int, uint, and string values can be keys.
.google.api.expr.v1alpha1.Value key = 1 [json_name = "key"];- Returns:
 - The key.
 
 - 
hasValue
boolean hasValue()The value.
.google.api.expr.v1alpha1.Value value = 2 [json_name = "value"];- Returns:
 - Whether the value field is set.
 
 - 
getValue
Value getValue()The value.
.google.api.expr.v1alpha1.Value value = 2 [json_name = "value"];- Returns:
 - The value.
 
 
 -