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 booleancontainsLabels(String key)User defined metadataStringgetDescription()Description of the entity.com.google.protobuf.ByteStringgetDescriptionBytes()Description of the entity.Map<String,String>getLabels()Deprecated.intgetLabelsCount()User defined metadataMap<String,String>getLabelsMap()User defined metadataStringgetLabelsOrDefault(String key, String defaultValue)User defined metadataStringgetLabelsOrThrow(String key)User defined metadataStringgetName()Name of the entity.com.google.protobuf.ByteStringgetNameBytes()Name of the entity.ValueProto.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.
-
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.
-
getLabelsCount
int getLabelsCount()
User defined metadata
map<string, string> labels = 8;
-
containsLabels
boolean containsLabels(String key)
User defined metadata
map<string, string> labels = 8;
-
getLabels
@Deprecated Map<String,String> getLabels()
Deprecated.UsegetLabelsMap()instead.
-
getLabelsMap
Map<String,String> getLabelsMap()
User defined metadata
map<string, string> labels = 8;
-
getLabelsOrDefault
String getLabelsOrDefault(String key, String defaultValue)
User defined metadata
map<string, string> labels = 8;
-
-