Package feast.proto.core
Interface FeatureProto.FeatureSpecV2OrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FeatureProto.FeatureSpecV2,FeatureProto.FeatureSpecV2.Builder
- Enclosing class:
- FeatureProto
public static interface FeatureProto.FeatureSpecV2OrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsTags(String key)Tags for user defined metadata on a featureStringgetName()Name of the feature.com.google.protobuf.ByteStringgetNameBytes()Name of the feature.Map<String,String>getTags()Deprecated.intgetTagsCount()Tags for user defined metadata on a featureMap<String,String>getTagsMap()Tags for user defined metadata on a featureStringgetTagsOrDefault(String key, String defaultValue)Tags for user defined metadata on a featureStringgetTagsOrThrow(String key)Tags for user defined metadata on a featureValueProto.ValueType.EnumgetValueType()Value type of the feature.intgetValueTypeValue()Value type of the feature.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Name of the feature. Not updatable.
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Name of the feature. Not updatable.
string name = 1;- Returns:
- The bytes for name.
-
getValueTypeValue
int getValueTypeValue()
Value type of the feature. Not updatable.
.feast.types.ValueType.Enum value_type = 2;- Returns:
- The enum numeric value on the wire for valueType.
-
getValueType
ValueProto.ValueType.Enum getValueType()
Value type of the feature. Not updatable.
.feast.types.ValueType.Enum value_type = 2;- Returns:
- The valueType.
-
getTagsCount
int getTagsCount()
Tags for user defined metadata on a feature
map<string, string> tags = 3;
-
containsTags
boolean containsTags(String key)
Tags for user defined metadata on a feature
map<string, string> tags = 3;
-
getTags
@Deprecated Map<String,String> getTags()
Deprecated.UsegetTagsMap()instead.
-
getTagsMap
Map<String,String> getTagsMap()
Tags for user defined metadata on a feature
map<string, string> tags = 3;
-
getTagsOrDefault
String getTagsOrDefault(String key, String defaultValue)
Tags for user defined metadata on a feature
map<string, string> tags = 3;
-
-