Package feast.proto.serving
Interface ServingAPIProto.GetOnlineFeaturesRequestV2.EntityRowOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ServingAPIProto.GetOnlineFeaturesRequestV2.EntityRow,ServingAPIProto.GetOnlineFeaturesRequestV2.EntityRow.Builder
- Enclosing class:
- ServingAPIProto.GetOnlineFeaturesRequestV2
public static interface ServingAPIProto.GetOnlineFeaturesRequestV2.EntityRowOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsFields(String key)Map containing mapping of entity name to entity value.Map<String,ValueProto.Value>getFields()Deprecated.intgetFieldsCount()Map containing mapping of entity name to entity value.Map<String,ValueProto.Value>getFieldsMap()Map containing mapping of entity name to entity value.ValueProto.ValuegetFieldsOrDefault(String key, ValueProto.Value defaultValue)Map containing mapping of entity name to entity value.ValueProto.ValuegetFieldsOrThrow(String key)Map containing mapping of entity name to entity value.com.google.protobuf.TimestampgetTimestamp()Request timestamp of this row.com.google.protobuf.TimestampOrBuildergetTimestampOrBuilder()Request timestamp of this row.booleanhasTimestamp()Request timestamp of this row.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasTimestamp
boolean hasTimestamp()
Request timestamp of this row. This value will be used, together with maxAge, to determine feature staleness.
.google.protobuf.Timestamp timestamp = 1;- Returns:
- Whether the timestamp field is set.
-
getTimestamp
com.google.protobuf.Timestamp getTimestamp()
Request timestamp of this row. This value will be used, together with maxAge, to determine feature staleness.
.google.protobuf.Timestamp timestamp = 1;- Returns:
- The timestamp.
-
getTimestampOrBuilder
com.google.protobuf.TimestampOrBuilder getTimestampOrBuilder()
Request timestamp of this row. This value will be used, together with maxAge, to determine feature staleness.
.google.protobuf.Timestamp timestamp = 1;
-
getFieldsCount
int getFieldsCount()
Map containing mapping of entity name to entity value.
map<string, .feast.types.Value> fields = 2;
-
containsFields
boolean containsFields(String key)
Map containing mapping of entity name to entity value.
map<string, .feast.types.Value> fields = 2;
-
getFields
@Deprecated Map<String,ValueProto.Value> getFields()
Deprecated.UsegetFieldsMap()instead.
-
getFieldsMap
Map<String,ValueProto.Value> getFieldsMap()
Map containing mapping of entity name to entity value.
map<string, .feast.types.Value> fields = 2;
-
getFieldsOrDefault
ValueProto.Value getFieldsOrDefault(String key, ValueProto.Value defaultValue)
Map containing mapping of entity name to entity value.
map<string, .feast.types.Value> fields = 2;
-
getFieldsOrThrow
ValueProto.Value getFieldsOrThrow(String key)
Map containing mapping of entity name to entity value.
map<string, .feast.types.Value> fields = 2;
-
-