Class MetadataItem
- java.lang.Object
-
- com.microsoft.azure.management.batch.MetadataItem
-
public class MetadataItem extends Object
A name-value pair associated with a Batch service resource. The Batch service does not assign any meaning to this metadata; it is solely for the use of user code.
-
-
Constructor Summary
Constructors Constructor Description MetadataItem()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringname()Get the name value.Stringvalue()Get the value value.MetadataItemwithName(String name)Set the name value.MetadataItemwithValue(String value)Set the value value.
-
-
-
Method Detail
-
name
public String name()
Get the name value.- Returns:
- the name value
-
withName
public MetadataItem withName(String name)
Set the name value.- Parameters:
name- the name value to set- Returns:
- the MetadataItem object itself.
-
value
public String value()
Get the value value.- Returns:
- the value value
-
withValue
public MetadataItem withValue(String value)
Set the value value.- Parameters:
value- the value value to set- Returns:
- the MetadataItem object itself.
-
-