Package feast.proto.serving
Interface ServingAPIProto.GetOnlineFeaturesResponse.FieldValuesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ServingAPIProto.GetOnlineFeaturesResponse.FieldValues,ServingAPIProto.GetOnlineFeaturesResponse.FieldValues.Builder
- Enclosing class:
- ServingAPIProto.GetOnlineFeaturesResponse
public static interface ServingAPIProto.GetOnlineFeaturesResponse.FieldValuesOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsFields(String key)Map of feature or entity name to feature/entity values.Map<String,ValueProto.Value>getFields()Deprecated.intgetFieldsCount()Map of feature or entity name to feature/entity values.Map<String,ValueProto.Value>getFieldsMap()Map of feature or entity name to feature/entity values.ValueProto.ValuegetFieldsOrDefault(String key, ValueProto.Value defaultValue)Map of feature or entity name to feature/entity values.ValueProto.ValuegetFieldsOrThrow(String key)Map of feature or entity name to feature/entity values.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFieldsCount
int getFieldsCount()
Map of feature or entity name to feature/entity values. Timestamps are not returned in this response.
map<string, .feast.types.Value> fields = 1;
-
containsFields
boolean containsFields(String key)
Map of feature or entity name to feature/entity values. Timestamps are not returned in this response.
map<string, .feast.types.Value> fields = 1;
-
getFields
@Deprecated Map<String,ValueProto.Value> getFields()
Deprecated.UsegetFieldsMap()instead.
-
getFieldsMap
Map<String,ValueProto.Value> getFieldsMap()
Map of feature or entity name to feature/entity values. Timestamps are not returned in this response.
map<string, .feast.types.Value> fields = 1;
-
getFieldsOrDefault
ValueProto.Value getFieldsOrDefault(String key, ValueProto.Value defaultValue)
Map of feature or entity name to feature/entity values. Timestamps are not returned in this response.
map<string, .feast.types.Value> fields = 1;
-
getFieldsOrThrow
ValueProto.Value getFieldsOrThrow(String key)
Map of feature or entity name to feature/entity values. Timestamps are not returned in this response.
map<string, .feast.types.Value> fields = 1;
-
-