Package org.mlflow.api.proto
Interface Service.DatasetSummaryOrBuilder
- 
- All Superinterfaces:
 com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
 Service.DatasetSummary,Service.DatasetSummary.Builder
- Enclosing class:
 - Service
 
public static interface Service.DatasetSummaryOrBuilder extends com.google.protobuf.MessageOrBuilder 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetContext()Value of "context" tag if set for the given dataset.com.google.protobuf.ByteStringgetContextBytes()Value of "context" tag if set for the given dataset.java.lang.StringgetDigest()Dataset digest, e.g.com.google.protobuf.ByteStringgetDigestBytes()Dataset digest, e.g.java.lang.StringgetExperimentId()Unique identifier for the experiment.com.google.protobuf.ByteStringgetExperimentIdBytes()Unique identifier for the experiment.java.lang.StringgetName()The name of the dataset.com.google.protobuf.ByteStringgetNameBytes()The name of the dataset.booleanhasContext()Value of "context" tag if set for the given dataset.booleanhasDigest()Dataset digest, e.g.booleanhasExperimentId()Unique identifier for the experiment.booleanhasName()The name of the dataset.- 
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof 
 - 
 
 - 
 
- 
- 
Method Detail
- 
hasExperimentId
boolean hasExperimentId()
Unique identifier for the experiment.
optional string experiment_id = 1 [(.mlflow.validate_required) = true];- Returns:
 - Whether the experimentId field is set.
 
 
- 
getExperimentId
java.lang.String getExperimentId()
Unique identifier for the experiment.
optional string experiment_id = 1 [(.mlflow.validate_required) = true];- Returns:
 - The experimentId.
 
 
- 
getExperimentIdBytes
com.google.protobuf.ByteString getExperimentIdBytes()
Unique identifier for the experiment.
optional string experiment_id = 1 [(.mlflow.validate_required) = true];- Returns:
 - The bytes for experimentId.
 
 
- 
hasName
boolean hasName()
The name of the dataset. E.g. “my.uc.table@2” “nyc-taxi-dataset”, “fantastic-elk-3”
optional string name = 2 [(.mlflow.validate_required) = true];- Returns:
 - Whether the name field is set.
 
 
- 
getName
java.lang.String getName()
The name of the dataset. E.g. “my.uc.table@2” “nyc-taxi-dataset”, “fantastic-elk-3”
optional string name = 2 [(.mlflow.validate_required) = true];- Returns:
 - The name.
 
 
- 
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The name of the dataset. E.g. “my.uc.table@2” “nyc-taxi-dataset”, “fantastic-elk-3”
optional string name = 2 [(.mlflow.validate_required) = true];- Returns:
 - The bytes for name.
 
 
- 
hasDigest
boolean hasDigest()
Dataset digest, e.g. an md5 hash of the dataset that uniquely identifies it within datasets of the same name.
optional string digest = 3 [(.mlflow.validate_required) = true];- Returns:
 - Whether the digest field is set.
 
 
- 
getDigest
java.lang.String getDigest()
Dataset digest, e.g. an md5 hash of the dataset that uniquely identifies it within datasets of the same name.
optional string digest = 3 [(.mlflow.validate_required) = true];- Returns:
 - The digest.
 
 
- 
getDigestBytes
com.google.protobuf.ByteString getDigestBytes()
Dataset digest, e.g. an md5 hash of the dataset that uniquely identifies it within datasets of the same name.
optional string digest = 3 [(.mlflow.validate_required) = true];- Returns:
 - The bytes for digest.
 
 
- 
hasContext
boolean hasContext()
Value of "context" tag if set for the given dataset.
optional string context = 4;- Returns:
 - Whether the context field is set.
 
 
- 
getContext
java.lang.String getContext()
Value of "context" tag if set for the given dataset.
optional string context = 4;- Returns:
 - The context.
 
 
- 
getContextBytes
com.google.protobuf.ByteString getContextBytes()
Value of "context" tag if set for the given dataset.
optional string context = 4;- Returns:
 - The bytes for context.
 
 
 - 
 
 -