public class ShapeSynchronizeType extends Object implements Serializable, Cloneable, org.jvnet.jaxb2_commons.lang.CopyTo
Java class for ShapeSynchronizeType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ShapeSynchronizeType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="delete" type="{http://www.w3.org/2001/XMLSchema}boolean"/> <element name="create" type="{http://www.w3.org/2001/XMLSchema}boolean"/> <element name="essenceVersion" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> <element name="id" type="{http://xml.vidispine.com/schema/vidispine}SiteIdType"/> <element name="component" type="{http://xml.vidispine.com/schema/vidispine}ComponentSynchronizeType" maxOccurs="unbounded" minOccurs="0"/> <element name="tag" type="{http://xml.vidispine.com/schema/vidispine}ShapeTagSynchronizeType" maxOccurs="unbounded" minOccurs="0"/> <element name="mimeType" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
Modifier and Type | Class and Description |
---|---|
static class |
ShapeSynchronizeType.PropInfo |
Modifier and Type | Field and Description |
---|---|
protected List<ComponentSynchronizeType> |
component |
protected boolean |
create |
protected boolean |
delete |
protected BigInteger |
essenceVersion |
protected String |
id |
protected List<String> |
mimeType |
protected List<ShapeTagSynchronizeType> |
tag |
Constructor and Description |
---|
ShapeSynchronizeType() |
Modifier and Type | Method and Description |
---|---|
Object |
clone() |
Object |
copyTo(Object target) |
Object |
copyTo(org.jvnet.jaxb2_commons.locator.ObjectLocator locator,
Object target,
org.jvnet.jaxb2_commons.lang.CopyStrategy strategy) |
Object |
createNewInstance() |
List<ComponentSynchronizeType> |
getComponent()
Gets the value of the component property.
|
BigInteger |
getEssenceVersion()
Gets the value of the essenceVersion property.
|
String |
getId()
Gets the value of the id property.
|
List<String> |
getMimeType()
Gets the value of the mimeType property.
|
List<ShapeTagSynchronizeType> |
getTag()
Gets the value of the tag property.
|
boolean |
isCreate()
Gets the value of the create property.
|
boolean |
isDelete()
Gets the value of the delete property.
|
boolean |
isSetComponent() |
boolean |
isSetCreate() |
boolean |
isSetDelete() |
boolean |
isSetEssenceVersion() |
boolean |
isSetId() |
boolean |
isSetMimeType() |
boolean |
isSetTag() |
void |
setCreate(boolean value)
Sets the value of the create property.
|
void |
setDelete(boolean value)
Sets the value of the delete property.
|
void |
setEssenceVersion(BigInteger value)
Sets the value of the essenceVersion property.
|
void |
setId(String value)
Sets the value of the id property.
|
void |
unsetComponent() |
void |
unsetMimeType() |
void |
unsetTag() |
ShapeSynchronizeType |
visit(com.kscs.util.jaxb.PropertyVisitor _visitor_) |
ShapeSynchronizeType |
withComponent(Collection<ComponentSynchronizeType> values) |
ShapeSynchronizeType |
withComponent(ComponentSynchronizeType... values) |
ShapeSynchronizeType |
withCreate(boolean value) |
ShapeSynchronizeType |
withDelete(boolean value) |
ShapeSynchronizeType |
withEssenceVersion(BigInteger value) |
ShapeSynchronizeType |
withId(String value) |
ShapeSynchronizeType |
withMimeType(Collection<String> values) |
ShapeSynchronizeType |
withMimeType(String... values) |
ShapeSynchronizeType |
withTag(Collection<ShapeTagSynchronizeType> values) |
ShapeSynchronizeType |
withTag(ShapeTagSynchronizeType... values) |
protected boolean delete
protected boolean create
protected BigInteger essenceVersion
protected String id
protected List<ComponentSynchronizeType> component
protected List<ShapeTagSynchronizeType> tag
public boolean isDelete()
public void setDelete(boolean value)
public boolean isSetDelete()
public boolean isCreate()
public void setCreate(boolean value)
public boolean isSetCreate()
public BigInteger getEssenceVersion()
BigInteger
public void setEssenceVersion(BigInteger value)
value
- allowed object is
BigInteger
public boolean isSetEssenceVersion()
public void setId(String value)
value
- allowed object is
String
public boolean isSetId()
public List<ComponentSynchronizeType> getComponent()
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 component property.
For example, to add a new item, do as follows:
getComponent().add(newItem);
Objects of the following type(s) are allowed in the list
ComponentSynchronizeType
public boolean isSetComponent()
public void unsetComponent()
public List<ShapeTagSynchronizeType> getTag()
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 tag property.
For example, to add a new item, do as follows:
getTag().add(newItem);
Objects of the following type(s) are allowed in the list
ShapeTagSynchronizeType
public boolean isSetTag()
public void unsetTag()
public List<String> getMimeType()
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 mimeType property.
For example, to add a new item, do as follows:
getMimeType().add(newItem);
Objects of the following type(s) are allowed in the list
String
public boolean isSetMimeType()
public void unsetMimeType()
public Object copyTo(Object target)
copyTo
in interface org.jvnet.jaxb2_commons.lang.CopyTo
public Object copyTo(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, Object target, org.jvnet.jaxb2_commons.lang.CopyStrategy strategy)
copyTo
in interface org.jvnet.jaxb2_commons.lang.CopyTo
public Object createNewInstance()
createNewInstance
in interface org.jvnet.jaxb2_commons.lang.CopyTo
public ShapeSynchronizeType withDelete(boolean value)
public ShapeSynchronizeType withCreate(boolean value)
public ShapeSynchronizeType withEssenceVersion(BigInteger value)
public ShapeSynchronizeType withId(String value)
public ShapeSynchronizeType withComponent(ComponentSynchronizeType... values)
public ShapeSynchronizeType withComponent(Collection<ComponentSynchronizeType> values)
public ShapeSynchronizeType withTag(ShapeTagSynchronizeType... values)
public ShapeSynchronizeType withTag(Collection<ShapeTagSynchronizeType> values)
public ShapeSynchronizeType withMimeType(String... values)
public ShapeSynchronizeType withMimeType(Collection<String> values)
public ShapeSynchronizeType visit(com.kscs.util.jaxb.PropertyVisitor _visitor_)
Copyright © 2017. All rights reserved.