Package feast.proto.core
Interface DataSourceProto.DataSource.RequestDataOptionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DataSourceProto.DataSource.RequestDataOptions,DataSourceProto.DataSource.RequestDataOptions.Builder
- Enclosing class:
- DataSourceProto.DataSource
public static interface DataSourceProto.DataSource.RequestDataOptionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsSchema(String key)Mapping of feature name to typeMap<String,ValueProto.ValueType.Enum>getSchema()Deprecated.intgetSchemaCount()Mapping of feature name to typeMap<String,ValueProto.ValueType.Enum>getSchemaMap()Mapping of feature name to typeValueProto.ValueType.EnumgetSchemaOrDefault(String key, ValueProto.ValueType.Enum defaultValue)Mapping of feature name to typeValueProto.ValueType.EnumgetSchemaOrThrow(String key)Mapping of feature name to typeMap<String,Integer>getSchemaValue()Deprecated.Map<String,Integer>getSchemaValueMap()Mapping of feature name to typeintgetSchemaValueOrDefault(String key, int defaultValue)Mapping of feature name to typeintgetSchemaValueOrThrow(String key)Mapping of feature name to type-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSchemaCount
int getSchemaCount()
Mapping of feature name to type
map<string, .feast.types.ValueType.Enum> schema = 2;
-
containsSchema
boolean containsSchema(String key)
Mapping of feature name to type
map<string, .feast.types.ValueType.Enum> schema = 2;
-
getSchema
@Deprecated Map<String,ValueProto.ValueType.Enum> getSchema()
Deprecated.UsegetSchemaMap()instead.
-
getSchemaMap
Map<String,ValueProto.ValueType.Enum> getSchemaMap()
Mapping of feature name to type
map<string, .feast.types.ValueType.Enum> schema = 2;
-
getSchemaOrDefault
ValueProto.ValueType.Enum getSchemaOrDefault(String key, ValueProto.ValueType.Enum defaultValue)
Mapping of feature name to type
map<string, .feast.types.ValueType.Enum> schema = 2;
-
getSchemaOrThrow
ValueProto.ValueType.Enum getSchemaOrThrow(String key)
Mapping of feature name to type
map<string, .feast.types.ValueType.Enum> schema = 2;
-
getSchemaValue
@Deprecated Map<String,Integer> getSchemaValue()
Deprecated.UsegetSchemaValueMap()instead.
-
getSchemaValueMap
Map<String,Integer> getSchemaValueMap()
Mapping of feature name to type
map<string, .feast.types.ValueType.Enum> schema = 2;
-
getSchemaValueOrDefault
int getSchemaValueOrDefault(String key, int defaultValue)
Mapping of feature name to type
map<string, .feast.types.ValueType.Enum> schema = 2;
-
getSchemaValueOrThrow
int getSchemaValueOrThrow(String key)
Mapping of feature name to type
map<string, .feast.types.ValueType.Enum> schema = 2;
-
-