Method from org.apache.jempbox.xmp.XMPSchemaDublinCore Detail: |
public void addContributor(String contributor) {
addBagValue( prefix + ":contributor", contributor );
}
Add a contributor to the list of contributors. A contributor is someone other than an author. |
public void addCreator(String creator) {
addSequenceValue( prefix + ":creator", creator );
}
|
public void addDate(Calendar date) {
addSequenceDateValue( prefix + ":date", date );
}
Add a date of interest to this schema. |
public void addLanguage(String language) {
addBagValue( prefix + ":language", language );
}
Add a language to the list of languages. |
public void addPublisher(String publisher) {
addBagValue( prefix + ":publisher", publisher );
}
Add a publisher to the list of publishers. |
public void addRelation(String relation) {
addBagValue( prefix + ":relation", relation );
}
Add a relation to the list of relationships.
A relationship to another resource. |
public void addSubject(String subject) {
addBagValue( prefix + ":subject", subject );
}
Add a subject to the list of subjects. |
public void addType(String type) {
addBagValue(prefix + ":type", type );
}
Add a type to the bag of types of this resource. |
public List<String> getContributors() {
return getBagList( prefix + ":contributor" );
}
Get the complete list of contributors. |
public String getCoverage() {
return getTextProperty( prefix + ":coverage" );
}
Get the coverage property. |
public List<String> getCreators() {
return getSequenceList( prefix + ":creator" );
}
Get a complete list of creators. |
public List<Calendar> getDates() throws IOException {
return getSequenceDateList( prefix + ":date" );
}
Get a list of all dates of interest to this resource. |
public String getDescription() {
return getLanguageProperty( prefix + ":description", null );
}
Get the default value for the description. |
public String getDescription(String language) {
return getLanguageProperty( prefix + ":description", language );
}
Get the description in a specific language. |
public List<String> getDescriptionLanguages() {
return getLanguagePropertyLanguages( prefix + ":description" );
}
Get a list of all languages that a description exists for. |
public String getFormat() {
return getTextProperty( prefix + ":format" );
}
|
public String getIdentifier() {
return getTextProperty( prefix + ":identifier" );
}
|
public List<String> getLanguages() {
return getBagList( prefix + ":language" );
}
Get the complete list of languages. |
public List<String> getPublishers() {
return getBagList( prefix + ":publisher" );
}
Get the complete list of publishers. |
public List<String> getRelationships() {
return getBagList( prefix + ":relation" );
}
Get the complete list of relationships. |
public String getRights() {
return getLanguageProperty( prefix + ":rights", null );
}
Get the default value for the rights of this document. |
public String getRights(String language) {
return getLanguageProperty( prefix + ":rights", language );
}
Get the rights in a specific language. |
public List<String> getRightsLanguages() {
return getLanguagePropertyLanguages( prefix + ":rights" );
}
Get a list of all languages that a rights description exists for. |
public String getSource() {
return getTextProperty( prefix + ":source" );
}
Get the resource source id. |
public List<String> getSubjects() {
return getBagList( prefix + ":subject" );
}
Get the complete list of subjects. |
public String getTitle() {
return getLanguageProperty( prefix + ":title", null );
}
Get the default value for the title. |
public String getTitle(String language) {
return getLanguageProperty( prefix + ":title", language );
}
Get the title in a specific language. |
public List<String> getTitleLanguages() {
return getLanguagePropertyLanguages( prefix + ":title" );
}
Get a list of all languages that a title exists for. |
public List<String> getTypes() {
return getBagList(prefix + ":type" );
}
Get the list of types for this resource. |
public void removeContributor(String contributor) {
removeBagValue( prefix + ":contributor", contributor );
}
Remove a contributor from the list of contributors. |
public void removeCreator(String creator) {
removeSequenceValue( prefix + ":creator", creator );
}
Remove a creator from the list of creators. |
public void removeDate(Calendar date) {
removeSequenceDateValue( prefix + ":date", date );
}
Remove a date from the list of 'interesting' dates. |
public void removeLanguage(String language) {
removeBagValue( prefix + ":language", language );
}
Remove a language from the list of languages. |
public void removePublisher(String publisher) {
removeBagValue( prefix + ":publisher", publisher );
}
Remove a publisher from the list of publishers. |
public void removeRelation(String relation) {
removeBagValue( prefix + ":relation", relation );
}
Remove a relation from the list of relationships.
A relationship to another resource. |
public void removeSubject(String subject) {
removeBagValue( prefix + ":subject", subject );
}
Remove a subject from the list of subjects. |
public void setCoverage(String coverage) {
setTextProperty( prefix + ":coverage", coverage );
}
Set the coverage property. |
public void setDescription(String description) {
setLanguageProperty( prefix + ":description", null, description );
}
Set the default value for the description. |
public void setDescription(String language,
String description) {
setLanguageProperty( prefix + ":description", language, description );
}
Set the description of this resource in a specific language. |
public void setFormat(String format) {
setTextProperty( prefix + ":format", format );
}
|
public void setIdentifier(String id) {
setTextProperty( prefix + ":identifier", id );
}
Set the resource identifier. |
public void setRights(String rights) {
setLanguageProperty( prefix + ":rights", null, rights );
}
Set the default value for the rights of this document. This property
specifies informal rights of the document. |
public void setRights(String language,
String rights) {
setLanguageProperty( prefix + ":rights", language, rights );
}
Set the rights for this resource in a specific language. |
public void setSource(String id) {
setTextProperty( prefix + ":source", id );
}
Set the resource source identifier. |
public void setTitle(String title) {
setLanguageProperty( prefix + ":title", null, title );
}
Set the default value for the title. |
public void setTitle(String language,
String title) {
setLanguageProperty( prefix + ":title", language, title );
}
Set the title of this resource in a specific language. |