public class Container extends Object
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice maxOccurs="unbounded" minOccurs="0"> <element ref="{http://schemas.microsoft.com/wix/2006/wi}PackageGroupRef"/> </choice> <attribute name="DownloadUrl" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="Name" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="Type" type="{http://schemas.microsoft.com/wix/2006/wi}BurnContainerType" /> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected String |
downloadUrl |
protected String |
id |
protected String |
name |
protected List<PackageGroupRef> |
packageGroupRef |
protected BurnContainerType |
type |
Constructor and Description |
---|
Container()
Default no-arg constructor
|
Container(List<PackageGroupRef> packageGroupRef,
String downloadUrl,
String id,
String name,
BurnContainerType type)
Fully-initialising value constructor
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object that) |
String |
getDownloadUrl()
Gets the value of the downloadUrl property.
|
String |
getId()
Gets the value of the id property.
|
String |
getName()
Gets the value of the name property.
|
List<PackageGroupRef> |
getPackageGroupRef()
Gets the value of the packageGroupRef property.
|
BurnContainerType |
getType()
Gets the value of the type property.
|
int |
hashCode() |
void |
setDownloadUrl(String value)
Sets the value of the downloadUrl property.
|
void |
setId(String value)
Sets the value of the id property.
|
void |
setName(String value)
Sets the value of the name property.
|
void |
setType(BurnContainerType value)
Sets the value of the type property.
|
String |
toString() |
Container |
withDownloadUrl(String value) |
Container |
withId(String value) |
Container |
withName(String value) |
Container |
withPackageGroupRef(Collection<PackageGroupRef> values) |
Container |
withPackageGroupRef(PackageGroupRef... values) |
Container |
withType(BurnContainerType value) |
protected List<PackageGroupRef> packageGroupRef
protected String downloadUrl
protected BurnContainerType type
public Container()
public Container(List<PackageGroupRef> packageGroupRef, String downloadUrl, String id, String name, BurnContainerType type)
public List<PackageGroupRef> getPackageGroupRef()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set
method for the packageGroupRef property.
For example, to add a new item, do as follows:
getPackageGroupRef().add(newItem);
Objects of the following type(s) are allowed in the list
PackageGroupRef
public String getDownloadUrl()
String
public void setDownloadUrl(String value)
value
- allowed object is
String
public void setId(String value)
value
- allowed object is
String
public String getName()
String
public void setName(String value)
value
- allowed object is
String
public BurnContainerType getType()
BurnContainerType
public void setType(BurnContainerType value)
value
- allowed object is
BurnContainerType
public Container withPackageGroupRef(PackageGroupRef... values)
public Container withPackageGroupRef(Collection<PackageGroupRef> values)
public Container withDownloadUrl(String value)
public Container withType(BurnContainerType value)
Copyright © 2019. All rights reserved.