Class Dataset
-
- All Implemented Interfaces:
public final class Dataset
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classDataset.BuilderA builder for Dataset.
public final classDataset.MetadataUser-controlled metadata about the dataset
-
Method Summary
Modifier and Type Method Description final Stringid()Unique identifier for the dataset final Stringname()Name of the dataset. final StringprojectId()Unique identifier for the project that the dataset belongs under final Optional<OffsetDateTime>created()Date of dataset creation final Optional<OffsetDateTime>deletedAt()Date of dataset deletion, or null if the dataset is still active final Optional<String>description()Textual description of the dataset final Optional<Dataset.Metadata>metadata()User-controlled metadata about the dataset final Optional<String>userId()Identifies the user who created the dataset final JsonField<String>_id()Returns the raw JSON value of id. final JsonField<String>_name()Returns the raw JSON value of name. final JsonField<String>_projectId()Returns the raw JSON value of projectId. final JsonField<OffsetDateTime>_created()Returns the raw JSON value of created. final JsonField<OffsetDateTime>_deletedAt()Returns the raw JSON value of deletedAt. final JsonField<String>_description()Returns the raw JSON value of description. final JsonField<Dataset.Metadata>_metadata()Returns the raw JSON value of metadata. final JsonField<String>_userId()Returns the raw JSON value of userId. final Map<String, JsonValue>_additionalProperties()final Datasetvalidate()final Dataset.BuildertoBuilder()Booleanequals(Object other)IntegerhashCode()StringtoString()final static Dataset.Builderbuilder()Returns a mutable builder for constructing an instance of Dataset. -
-
Method Detail
-
created
final Optional<OffsetDateTime> created()
Date of dataset creation
-
deletedAt
final Optional<OffsetDateTime> deletedAt()
Date of dataset deletion, or null if the dataset is still active
-
description
final Optional<String> description()
Textual description of the dataset
-
metadata
final Optional<Dataset.Metadata> metadata()
User-controlled metadata about the dataset
-
_id
final JsonField<String> _id()
Returns the raw JSON value of id.
Unlike id, this method doesn't throw if the JSON field has an unexpected type.
-
_name
final JsonField<String> _name()
Returns the raw JSON value of name.
Unlike name, this method doesn't throw if the JSON field has an unexpected type.
-
_projectId
final JsonField<String> _projectId()
Returns the raw JSON value of projectId.
Unlike projectId, this method doesn't throw if the JSON field has an unexpected type.
-
_created
final JsonField<OffsetDateTime> _created()
Returns the raw JSON value of created.
Unlike created, this method doesn't throw if the JSON field has an unexpected type.
-
_deletedAt
final JsonField<OffsetDateTime> _deletedAt()
Returns the raw JSON value of deletedAt.
Unlike deletedAt, this method doesn't throw if the JSON field has an unexpected type.
-
_description
final JsonField<String> _description()
Returns the raw JSON value of description.
Unlike description, this method doesn't throw if the JSON field has an unexpected type.
-
_metadata
final JsonField<Dataset.Metadata> _metadata()
Returns the raw JSON value of metadata.
Unlike metadata, this method doesn't throw if the JSON field has an unexpected type.
-
_userId
final JsonField<String> _userId()
Returns the raw JSON value of userId.
Unlike userId, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final Dataset.Builder toBuilder()
-
builder
final static Dataset.Builder builder()
Returns a mutable builder for constructing an instance of Dataset.
The following fields are required:
.id() .name() .projectId()
-
-
-
-