Package feast.proto.serving
Interface ServingAPIProto.GetOnlineFeaturesRequest.EntityRowOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ServingAPIProto.GetOnlineFeaturesRequest.EntityRow,ServingAPIProto.GetOnlineFeaturesRequest.EntityRow.Builder
- Enclosing class:
- ServingAPIProto.GetOnlineFeaturesRequest
public static interface ServingAPIProto.GetOnlineFeaturesRequest.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.com.google.protobuf.TimestampgetEntityTimestamp()Request timestamp of this row.com.google.protobuf.TimestampOrBuildergetEntityTimestampOrBuilder()Request timestamp of this row.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.booleanhasEntityTimestamp()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
-
hasEntityTimestamp
boolean hasEntityTimestamp()
Request timestamp of this row. This value will be used, together with maxAge, to determine feature staleness.
.google.protobuf.Timestamp entity_timestamp = 1;- Returns:
- Whether the entityTimestamp field is set.
-
getEntityTimestamp
com.google.protobuf.Timestamp getEntityTimestamp()
Request timestamp of this row. This value will be used, together with maxAge, to determine feature staleness.
.google.protobuf.Timestamp entity_timestamp = 1;- Returns:
- The entityTimestamp.
-
getEntityTimestampOrBuilder
com.google.protobuf.TimestampOrBuilder getEntityTimestampOrBuilder()
Request timestamp of this row. This value will be used, together with maxAge, to determine feature staleness.
.google.protobuf.Timestamp entity_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;
-
-