TaggedBlobItem Class

  • java.lang.Object
    • com.azure.storage.blob.models.TaggedBlobItem

public final class TaggedBlobItem

Blob info from a Filter Blobs API call.

Constructor Summary

Constructor Description
TaggedBlobItem(String containerName, String name)

Constructor to create a new TaggedBlobItem

TaggedBlobItem(String containerName, String name, Map<String,String> tags)

Constructor to create a new TaggedBlobItem

Method Summary

Modifier and Type Method and Description
String getContainerName()

Get the containerName property: The containerName property.

String getName()

Get the name property: The name property.

Map<String,String> getTags()

Get the tags property: The tags property.

Methods inherited from java.lang.Object

Constructor Details

TaggedBlobItem

public TaggedBlobItem(String containerName, String name)

Constructor to create a new TaggedBlobItem

Parameters:

containerName - The container name
name - The blob name

TaggedBlobItem

public TaggedBlobItem(String containerName, String name, Map tags)

Constructor to create a new TaggedBlobItem

Parameters:

containerName - The container name
name - The blob name
tags - The blob tags

Method Details

getContainerName

public String getContainerName()

Get the containerName property: The containerName property.

Returns:

the containerName value.

getName

public String getName()

Get the name property: The name property.

Returns:

the name value.

getTags

public Map getTags()

Get the tags property: The tags property.

Returns:

the tags value.

Applies to