Interface DependencyOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Dependency,Dependency.Builder
public interface DependencyOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()The string identifier for the dependency.com.google.protobuf.ByteStringgetNameBytes()The string identifier for the dependency.Dependency.DependencyTypegetType()The kind of dependency.intgetTypeValue()The kind of dependency.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTypeValue
int getTypeValue()
The kind of dependency.
.envoy.extensions.filters.common.dependency.v3.Dependency.DependencyType type = 1;- Returns:
- The enum numeric value on the wire for type.
-
getType
Dependency.DependencyType getType()
The kind of dependency.
.envoy.extensions.filters.common.dependency.v3.Dependency.DependencyType type = 1;- Returns:
- The type.
-
getName
String getName()
The string identifier for the dependency.
string name = 2 [(.validate.rules) = { ... }- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The string identifier for the dependency.
string name = 2 [(.validate.rules) = { ... }- Returns:
- The bytes for name.
-
-