Interface Gnmi.UpdateOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Gnmi.Update
,Gnmi.Update.Builder
- Enclosing class:
- Gnmi
public static interface Gnmi.UpdateOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description int
getDuplicates()
Number of coalesced duplicates.Gnmi.Path
getPath()
The path (key) for the update.Gnmi.PathOrBuilder
getPathOrBuilder()
The path (key) for the update.Gnmi.TypedValue
getVal()
The explicitly typed update value.Gnmi.TypedValueOrBuilder
getValOrBuilder()
The explicitly typed update value.Gnmi.Value
getValue()
Deprecated.Gnmi.ValueOrBuilder
getValueOrBuilder()
Deprecated.boolean
hasPath()
The path (key) for the update.boolean
hasVal()
The explicitly typed update value.boolean
hasValue()
Deprecated.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasPath
boolean hasPath()
The path (key) for the update.
.gnmi.Path path = 1;
-
getPath
Gnmi.Path getPath()
The path (key) for the update.
.gnmi.Path path = 1;
-
getPathOrBuilder
Gnmi.PathOrBuilder getPathOrBuilder()
The path (key) for the update.
.gnmi.Path path = 1;
-
hasValue
@Deprecated boolean hasValue()
Deprecated.The value (value) for the update.
.gnmi.Value value = 2 [deprecated = true];
-
getValue
@Deprecated Gnmi.Value getValue()
Deprecated.The value (value) for the update.
.gnmi.Value value = 2 [deprecated = true];
-
getValueOrBuilder
@Deprecated Gnmi.ValueOrBuilder getValueOrBuilder()
Deprecated.The value (value) for the update.
.gnmi.Value value = 2 [deprecated = true];
-
hasVal
boolean hasVal()
The explicitly typed update value.
.gnmi.TypedValue val = 3;
-
getVal
Gnmi.TypedValue getVal()
The explicitly typed update value.
.gnmi.TypedValue val = 3;
-
getValOrBuilder
Gnmi.TypedValueOrBuilder getValOrBuilder()
The explicitly typed update value.
.gnmi.TypedValue val = 3;
-
getDuplicates
int getDuplicates()
Number of coalesced duplicates.
uint32 duplicates = 4;
-
-