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(java.lang.String key)Defines a map of parameter names to parameters.java.util.Map<java.lang.String,Interface.Parameter>getParameters()Deprecated.intgetParametersCount()Defines a map of parameter names to parameters.java.util.Map<java.lang.String,Interface.Parameter>getParametersMap()Defines a map of parameter names to parameters.Interface.ParametergetParametersOrDefault(java.lang.String key, Interface.Parameter defaultValue)Defines a map of parameter names to parameters.Interface.ParametergetParametersOrThrow(java.lang.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(java.lang.String key)
Defines a map of parameter names to parameters.
map<string, .flyteidl.core.Parameter> parameters = 1;
-
getParameters
@Deprecated java.util.Map<java.lang.String,Interface.Parameter> getParameters()
Deprecated.UsegetParametersMap()instead.
-
getParametersMap
java.util.Map<java.lang.String,Interface.Parameter> getParametersMap()
Defines a map of parameter names to parameters.
map<string, .flyteidl.core.Parameter> parameters = 1;
-
getParametersOrDefault
Interface.Parameter getParametersOrDefault(java.lang.String key, Interface.Parameter defaultValue)
Defines a map of parameter names to parameters.
map<string, .flyteidl.core.Parameter> parameters = 1;
-
getParametersOrThrow
Interface.Parameter getParametersOrThrow(java.lang.String key)
Defines a map of parameter names to parameters.
map<string, .flyteidl.core.Parameter> parameters = 1;
-
-