Package com.azure.storage.blob.models
Class BlobContainerItem
- java.lang.Object
-
- com.azure.storage.blob.models.BlobContainerItem
-
public final class BlobContainerItem extends Object
An Azure Storage container.
-
-
Constructor Summary
Constructors Constructor Description BlobContainerItem()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>getMetadata()Get the metadata property: Dictionary of <string>.StringgetName()Get the name property: The Name property.BlobContainerItemPropertiesgetProperties()Get the properties property: Properties of a container.StringgetVersion()Get the version property: The Version property.BooleanisDeleted()Get the deleted property: The Deleted property.BlobContainerItemsetDeleted(Boolean deleted)Set the deleted property: The Deleted property.BlobContainerItemsetMetadata(Map<String,String> metadata)Set the metadata property: Dictionary of <string>.BlobContainerItemsetName(String name)Set the name property: The Name property.BlobContainerItemsetProperties(BlobContainerItemProperties properties)Set the properties property: Properties of a container.BlobContainerItemsetVersion(String version)Set the version property: The Version property.
-
-
-
Method Detail
-
getName
public String getName()
Get the name property: The Name property.- Returns:
- the name value.
-
setName
public BlobContainerItem setName(String name)
Set the name property: The Name property.- Parameters:
name- the name value to set.- Returns:
- the BlobContainerItem object itself.
-
isDeleted
public Boolean isDeleted()
Get the deleted property: The Deleted property.- Returns:
- the deleted value.
-
setDeleted
public BlobContainerItem setDeleted(Boolean deleted)
Set the deleted property: The Deleted property.- Parameters:
deleted- the deleted value to set.- Returns:
- the BlobContainerItem object itself.
-
getVersion
public String getVersion()
Get the version property: The Version property.- Returns:
- the version value.
-
setVersion
public BlobContainerItem setVersion(String version)
Set the version property: The Version property.- Parameters:
version- the version value to set.- Returns:
- the BlobContainerItem object itself.
-
getProperties
public BlobContainerItemProperties getProperties()
Get the properties property: Properties of a container.- Returns:
- the properties value.
-
setProperties
public BlobContainerItem setProperties(BlobContainerItemProperties properties)
Set the properties property: Properties of a container.- Parameters:
properties- the properties value to set.- Returns:
- the BlobContainerItem object itself.
-
getMetadata
public Map<String,String> getMetadata()
Get the metadata property: Dictionary of <string>.- Returns:
- the metadata value.
-
setMetadata
public BlobContainerItem setMetadata(Map<String,String> metadata)
Set the metadata property: Dictionary of <string>.- Parameters:
metadata- the metadata value to set.- Returns:
- the BlobContainerItem object itself.
-
-