Package flyteidl.core
Interface Interface.ParameterMapOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Interface.ParameterMap,Interface.ParameterMap.Builder
- Enclosing class:
- Interface
public static interface Interface.ParameterMapOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsParameters(String key)Defines a map of parameter names to parameters.Map<String,Interface.Parameter>getParameters()Deprecated.intgetParametersCount()Defines a map of parameter names to parameters.Map<String,Interface.Parameter>getParametersMap()Defines a map of parameter names to parameters.Interface.ParametergetParametersOrDefault(String key, Interface.Parameter defaultValue)Defines a map of parameter names to parameters.Interface.ParametergetParametersOrThrow(String key)Defines a map of parameter names to parameters.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParametersCount
int getParametersCount()
Defines a map of parameter names to parameters.
map<string, .flyteidl.core.Parameter> parameters = 1;
-
containsParameters
boolean containsParameters(String key)
Defines a map of parameter names to parameters.
map<string, .flyteidl.core.Parameter> parameters = 1;
-
getParameters
@Deprecated Map<String,Interface.Parameter> getParameters()
Deprecated.UsegetParametersMap()instead.
-
getParametersMap
Map<String,Interface.Parameter> getParametersMap()
Defines a map of parameter names to parameters.
map<string, .flyteidl.core.Parameter> parameters = 1;
-
getParametersOrDefault
Interface.Parameter getParametersOrDefault(String key, Interface.Parameter defaultValue)
Defines a map of parameter names to parameters.
map<string, .flyteidl.core.Parameter> parameters = 1;
-
getParametersOrThrow
Interface.Parameter getParametersOrThrow(String key)
Defines a map of parameter names to parameters.
map<string, .flyteidl.core.Parameter> parameters = 1;
-
-