Interface Gnmi.PathOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Gnmi.Path
,Gnmi.Path.Builder
- Enclosing class:
- Gnmi
public static interface Gnmi.PathOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Gnmi.PathElem
getElem(int index)
Elements of the path.int
getElemCount()
Elements of the path.String
getElement(int index)
Deprecated.com.google.protobuf.ByteString
getElementBytes(int index)
Deprecated.int
getElementCount()
Deprecated.List<String>
getElementList()
Deprecated.List<Gnmi.PathElem>
getElemList()
Elements of the path.Gnmi.PathElemOrBuilder
getElemOrBuilder(int index)
Elements of the path.List<? extends Gnmi.PathElemOrBuilder>
getElemOrBuilderList()
Elements of the path.String
getOrigin()
Label to disambiguate path.com.google.protobuf.ByteString
getOriginBytes()
Label to disambiguate path.String
getTarget()
The name of the targetcom.google.protobuf.ByteString
getTargetBytes()
The name of the target-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getElementList
@Deprecated List<String> getElementList()
Deprecated.Elements of the path are no longer encoded as a string, but rather within the elem field as a PathElem message.
repeated string element = 1 [deprecated = true];
-
getElementCount
@Deprecated int getElementCount()
Deprecated.Elements of the path are no longer encoded as a string, but rather within the elem field as a PathElem message.
repeated string element = 1 [deprecated = true];
-
getElement
@Deprecated String getElement(int index)
Deprecated.Elements of the path are no longer encoded as a string, but rather within the elem field as a PathElem message.
repeated string element = 1 [deprecated = true];
-
getElementBytes
@Deprecated com.google.protobuf.ByteString getElementBytes(int index)
Deprecated.Elements of the path are no longer encoded as a string, but rather within the elem field as a PathElem message.
repeated string element = 1 [deprecated = true];
-
getOrigin
String getOrigin()
Label to disambiguate path.
string origin = 2;
-
getOriginBytes
com.google.protobuf.ByteString getOriginBytes()
Label to disambiguate path.
string origin = 2;
-
getElemList
List<Gnmi.PathElem> getElemList()
Elements of the path.
repeated .gnmi.PathElem elem = 3;
-
getElem
Gnmi.PathElem getElem(int index)
Elements of the path.
repeated .gnmi.PathElem elem = 3;
-
getElemCount
int getElemCount()
Elements of the path.
repeated .gnmi.PathElem elem = 3;
-
getElemOrBuilderList
List<? extends Gnmi.PathElemOrBuilder> getElemOrBuilderList()
Elements of the path.
repeated .gnmi.PathElem elem = 3;
-
getElemOrBuilder
Gnmi.PathElemOrBuilder getElemOrBuilder(int index)
Elements of the path.
repeated .gnmi.PathElem elem = 3;
-
getTarget
String getTarget()
The name of the target
string target = 4;
-
getTargetBytes
com.google.protobuf.ByteString getTargetBytes()
The name of the target
string target = 4;
-
-