Method from org.apache.jempbox.xmp.XMPSchemaBasic Detail: |
public void addAdvisory(String advisory) {
addBagValue( prefix + ":Advisory", advisory );
}
Add an advisory to the list. |
public void addIdentifier(String id) {
addBagValue( prefix + ":Identifier", id );
}
Add a new identifier for this resource. |
public List<String> getAdvisories() {
return getBagList( prefix + ":Advisory" );
}
Get the complete list of advisories. |
public String getBaseURL() {
return getTextProperty( prefix + ":BaseURL" );
}
Get the base URL of the resource. |
public Calendar getCreateDate() throws IOException {
return getDateProperty( prefix + ":CreateDate" );
}
Get the creation date of the resource. |
public String getCreatorTool() {
return getTextProperty( prefix + ":CreatorTool" );
}
Get the tool that created this resource, in the form of "vendor app version", ie
"Adobe Acrobat Distiller 5.0". |
public List<String> getIdentifiers() {
return getBagList( prefix + ":Identifier" );
}
Get the complete list of identifiers. |
public String getLabel() {
return getTextProperty( prefix + "p:Label" );
}
Get the short phrase that describes this resource. |
public Calendar getMetadataDate() throws IOException {
return getDateProperty( prefix + ":MetadataDate" );
}
Get the metadata change date for this resource. |
public Calendar getModifyDate() throws IOException {
return getDateProperty( prefix + ":ModifyDate" );
}
Get the date the resource was last modified. |
public String getNickname() {
return getTextProperty( prefix + ":Nickname" );
}
Get the short informal name for this resource. |
public Integer getRating() {
return getIntegerProperty( prefix + ":Rating" );
}
Get a number that indicates the documents status. |
public Thumbnail getThumbnail() {
return getThumbnailProperty( prefix + ":Thumnails", null );
}
Get the default value for the thumbnail. |
public Thumbnail getThumbnail(String language) {
return getThumbnailProperty( prefix + ":Thumbnails", language );
}
Get the thumbnail in a specific language. |
public List<String> getThumbnailLanguages() {
return getLanguagePropertyLanguages( prefix + ":Thumbnails" );
}
Get a list of all languages that a thumbnail exists for. |
public String getTitle() {
return getTextProperty( prefix + ":Title" );
}
Get the title for this resource. |
public void removeAdvisory(String advisory) {
removeBagValue( prefix + ":Advisory", advisory );
}
Remove an Advisory xpath expression. |
public void removeIdentifier(String id) {
removeBagValue( prefix + ":Identifier", id );
}
Remove an identifier to this resource. |
public void setBaseURL(String url) {
setTextProperty( prefix + ":BaseURL", url );
}
The base URL of the resource, for relative URLs in the document. |
public void setCreateDate(Calendar date) {
setDateProperty( prefix + ":CreateDate", date );
}
Set the creation date of the resource. |
public void setCreatorTool(String creator) {
setTextProperty( prefix + ":CreatorTool", creator );
}
The creator tool for the resource. In the form of "vendor app version", ie
"Adobe Acrobat Distiller 5.0" |
public void setLabel(String label) {
setTextProperty( prefix + ":Label", label );
}
Set a short phrase that identifies this resource. |
public void setMetadataDate(Calendar date) {
setDateProperty( prefix + ":MetadataDate", date );
}
Set the date that any metadata was updated. |
public void setModifyDate(Calendar date) {
setDateProperty( prefix + ":ModifyDate", date );
}
Set the date that the resource was last modified. |
public void setNickname(String nickname) {
setTextProperty( prefix + ":Nickname", nickname );
}
Set a short informal name for the resource. |
public void setRating(Integer rating) {
setIntegerProperty( prefix + ":Rating", rating );
}
|
public void setThumbnail(Thumbnail thumbnail) {
setThumbnailProperty( prefix + ":Thumbnails", null, thumbnail );
}
Set the default value for the thumbnail. |
public void setThumbnail(String language,
Thumbnail thumbnail) {
setThumbnailProperty( prefix + ":Thumbnails", language, thumbnail );
}
Set the thumbnail of this resource in a specific language. |
public void setTitle(String title) {
setTextProperty( prefix + ":Title", title);
}
Set a Title for this resource. |