QueueItem Class

  • java.lang.Object
    • com.azure.storage.queue.models.QueueItem

public final class QueueItem

An Azure Storage Queue.

Constructor Summary

Constructor Description
QueueItem()

Creates an instance of QueueItem class.

Method Summary

Modifier and Type Method and Description
Map<String,String> getMetadata()

Get the metadata property: Dictionary of .

String getName()

Get the name property: The name of the Queue.

QueueItem setMetadata(Map<String,String> metadata)

Set the metadata property: Dictionary of .

QueueItem setName(String name)

Set the name property: The name of the Queue.

Methods inherited from java.lang.Object

Constructor Details

QueueItem

public QueueItem()

Creates an instance of QueueItem class.

Method Details

getMetadata

public Map getMetadata()

Get the metadata property: Dictionary of .

Returns:

the metadata value.

getName

public String getName()

Get the name property: The name of the Queue.

Returns:

the name value.

setMetadata

public QueueItem setMetadata(Map metadata)

Set the metadata property: Dictionary of .

Parameters:

metadata - the metadata value to set.

Returns:

the QueueItem object itself.

setName

public QueueItem setName(String name)

Set the name property: The name of the Queue.

Parameters:

name - the name value to set.

Returns:

the QueueItem object itself.

Applies to