Package flyteidl.admin
Interface Common.AnnotationsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Common.Annotations,Common.Annotations.Builder
- Enclosing class:
- Common
public static interface Common.AnnotationsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsValues(java.lang.String key)Map of custom annotations to be applied to the execution resource.java.util.Map<java.lang.String,java.lang.String>getValues()Deprecated.intgetValuesCount()Map of custom annotations to be applied to the execution resource.java.util.Map<java.lang.String,java.lang.String>getValuesMap()Map of custom annotations to be applied to the execution resource.java.lang.StringgetValuesOrDefault(java.lang.String key, java.lang.String defaultValue)Map of custom annotations to be applied to the execution resource.java.lang.StringgetValuesOrThrow(java.lang.String key)Map of custom annotations to be applied to the execution resource.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getValuesCount
int getValuesCount()
Map of custom annotations to be applied to the execution resource.
map<string, string> values = 1;
-
containsValues
boolean containsValues(java.lang.String key)
Map of custom annotations to be applied to the execution resource.
map<string, string> values = 1;
-
getValues
@Deprecated java.util.Map<java.lang.String,java.lang.String> getValues()
Deprecated.UsegetValuesMap()instead.
-
getValuesMap
java.util.Map<java.lang.String,java.lang.String> getValuesMap()
Map of custom annotations to be applied to the execution resource.
map<string, string> values = 1;
-
getValuesOrDefault
java.lang.String getValuesOrDefault(java.lang.String key, java.lang.String defaultValue)Map of custom annotations to be applied to the execution resource.
map<string, string> values = 1;
-
getValuesOrThrow
java.lang.String getValuesOrThrow(java.lang.String key)
Map of custom annotations to be applied to the execution resource.
map<string, string> values = 1;
-
-