Method from org.apache.jempbox.xmp.XMPSchemaIptc4xmpCore Detail: |
public void addScene(String scene) {
addBagValue(prefix + ":Scene", scene);
}
|
public void addSubjectCode(String subject) {
addBagValue(prefix + ":SubjectCode", subject);
}
|
public String getCiAdrCity() {
return getTextProperty(prefix + ":CiAdrCity");
}
Contact Info Address City. |
public String getCiAdrCtry() {
return getTextProperty(prefix + ":CiAdrCtry");
}
|
public String getCiAdrExtadr() {
return getTextProperty(prefix + ":CiAdrExtadr");
}
Contact Info Extended Address(company name). |
public String getCiAdrPcode() {
return getTextProperty(prefix + ":CiAdrPcode");
}
|
public String getCiAdrRegion() {
return getTextProperty(prefix + ":CiAdrRegion");
}
|
public String getCiEmailWork() {
return getTextProperty(prefix + ":CiEmailWork");
}
|
public String getCiTelWork() {
return getTextProperty(prefix + ":CiTelWork");
}
|
public String getCiUrlWork() {
return getTextProperty(prefix + ":CiUrlWork");
}
|
public String getCountryCode() {
return getTextProperty(prefix + ":CountryCode");
}
|
public String getIntellectualGenre() {
return getTextProperty(prefix + ":IntellectualGenre");
}
|
public String getLocation() {
return getTextProperty(prefix + ":Location");
}
Name of location that the content is focussing on. |
public List<String> getScenes() {
return getBagList(prefix + ":Scene");
}
A list of all the scenes. |
public List<String> getSubjectCodes() {
return getBagList(prefix + ":SubjectCode");
}
Get a list of all IPTC subject codes. |
public void setCiAdrCity(String city) {
setTextProperty(prefix + ":CiAdrCity", city);
}
Contact Info Address City. |
public void setCiAdrCtry(String country) {
setTextProperty(prefix + ":CiAdrCtry", country);
}
|
public void setCiAdrExtadr(String adr) {
setTextProperty(prefix + ":CiAdrExtadr", adr);
}
Contact Info Extended Address(company name). |
public void setCiAdrPcode(String po) {
setTextProperty(prefix + ":CiAdrPcode", po);
}
|
public void setCiAdrRegion(String state) {
setTextProperty(prefix + ":CiAdrRegion", state);
}
|
public void setCiEmailWork(String email) {
setTextProperty(prefix + ":CiEmailWork", email);
}
|
public void setCiTelWork(String tel) {
setTextProperty(prefix + ":CiTelWork", tel);
}
|
public void setCiUrlWork(String url) {
setTextProperty(prefix + ":CiUrlWork", url);
}
|
public void setCountryCode(String code) {
setTextProperty(prefix + ":CountryCode", code);
}
|
public void setIntellectualGenre(String genre) {
setTextProperty(prefix + ":IntellectualGenre", genre);
}
|
public void setLocation(String loc) {
setTextProperty(prefix + ":Location", loc);
}
Name of location that the content is focussing on. |