Package feast.proto.core
Interface EntityProto.EntityOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
EntityProto.Entity,EntityProto.Entity.Builder
- Enclosing class:
- EntityProto
public static interface EntityProto.EntityOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EntityProto.EntityMetagetMeta()System-populated metadata for this entity.EntityProto.EntityMetaOrBuildergetMetaOrBuilder()System-populated metadata for this entity.EntityProto.EntitySpecV2getSpec()User-specified specifications of this entity.EntityProto.EntitySpecV2OrBuildergetSpecOrBuilder()User-specified specifications of this entity.booleanhasMeta()System-populated metadata for this entity.booleanhasSpec()User-specified specifications of this entity.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasSpec
boolean hasSpec()
User-specified specifications of this entity.
.feast.core.EntitySpecV2 spec = 1;- Returns:
- Whether the spec field is set.
-
getSpec
EntityProto.EntitySpecV2 getSpec()
User-specified specifications of this entity.
.feast.core.EntitySpecV2 spec = 1;- Returns:
- The spec.
-
getSpecOrBuilder
EntityProto.EntitySpecV2OrBuilder getSpecOrBuilder()
User-specified specifications of this entity.
.feast.core.EntitySpecV2 spec = 1;
-
hasMeta
boolean hasMeta()
System-populated metadata for this entity.
.feast.core.EntityMeta meta = 2;- Returns:
- Whether the meta field is set.
-
getMeta
EntityProto.EntityMeta getMeta()
System-populated metadata for this entity.
.feast.core.EntityMeta meta = 2;- Returns:
- The meta.
-
getMetaOrBuilder
EntityProto.EntityMetaOrBuilder getMetaOrBuilder()
System-populated metadata for this entity.
.feast.core.EntityMeta meta = 2;
-
-