Package feast.proto.core
Interface EntityProto.EntitySpecV2OrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
EntityProto.EntitySpecV2,EntityProto.EntitySpecV2.Builder
- Enclosing class:
- EntityProto
public static interface EntityProto.EntitySpecV2OrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsTags(String key)User defined metadataStringgetDescription()Description of the entity.com.google.protobuf.ByteStringgetDescriptionBytes()Description of the entity.StringgetJoinKey()Join key for the entity (i.e.com.google.protobuf.ByteStringgetJoinKeyBytes()Join key for the entity (i.e.StringgetName()Name of the entity.com.google.protobuf.ByteStringgetNameBytes()Name of the entity.StringgetOwner()Owner of the entity.com.google.protobuf.ByteStringgetOwnerBytes()Owner of the entity.StringgetProject()Name of Feast project that this feature table belongs to.com.google.protobuf.ByteStringgetProjectBytes()Name of Feast project that this feature table belongs to.Map<String,String>getTags()Deprecated.intgetTagsCount()User defined metadataMap<String,String>getTagsMap()User defined metadataStringgetTagsOrDefault(String key, String defaultValue)User defined metadataStringgetTagsOrThrow(String key)User defined metadataValueProto.ValueType.EnumgetValueType()Type of the entity.intgetValueTypeValue()Type of the entity.-
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 entity.
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Name of the entity.
string name = 1;- Returns:
- The bytes for name.
-
getProject
String getProject()
Name of Feast project that this feature table belongs to.
string project = 9;- Returns:
- The project.
-
getProjectBytes
com.google.protobuf.ByteString getProjectBytes()
Name of Feast project that this feature table belongs to.
string project = 9;- Returns:
- The bytes for project.
-
getValueTypeValue
int getValueTypeValue()
Type of the entity.
.feast.types.ValueType.Enum value_type = 2;- Returns:
- The enum numeric value on the wire for valueType.
-
getValueType
ValueProto.ValueType.Enum getValueType()
Type of the entity.
.feast.types.ValueType.Enum value_type = 2;- Returns:
- The valueType.
-
getDescription
String getDescription()
Description of the entity.
string description = 3;- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
Description of the entity.
string description = 3;- Returns:
- The bytes for description.
-
getJoinKey
String getJoinKey()
Join key for the entity (i.e. name of the column the entity maps to).
string join_key = 4;- Returns:
- The joinKey.
-
getJoinKeyBytes
com.google.protobuf.ByteString getJoinKeyBytes()
Join key for the entity (i.e. name of the column the entity maps to).
string join_key = 4;- Returns:
- The bytes for joinKey.
-
getTagsCount
int getTagsCount()
User defined metadata
map<string, string> tags = 8;
-
containsTags
boolean containsTags(String key)
User defined metadata
map<string, string> tags = 8;
-
getTags
@Deprecated Map<String,String> getTags()
Deprecated.UsegetTagsMap()instead.
-
getTagsOrDefault
String getTagsOrDefault(String key, String defaultValue)
User defined metadata
map<string, string> tags = 8;
-
getTagsOrThrow
String getTagsOrThrow(String key)
User defined metadata
map<string, string> tags = 8;
-
getOwner
String getOwner()
Owner of the entity.
string owner = 10;- Returns:
- The owner.
-
getOwnerBytes
com.google.protobuf.ByteString getOwnerBytes()
Owner of the entity.
string owner = 10;- Returns:
- The bytes for owner.
-
-