Interface DublinCore
-
- All Superinterfaces:
BasicSchema
- All Known Subinterfaces:
InfoDictionary
public interface DublinCore extends BasicSchema
Current interface represent Dublin Core schema- Author:
- Evgeniy Muravitskiy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAuthor()Return Author entry.StringgetSubject()Return Subject entry.StringgetTitle()Return Title entry.voidsetAuthor(String creator)Set Author entry.voidsetSubject(String description)Set Subject entry.voidsetTitle(String title)Set Title entry.-
Methods inherited from interface org.verapdf.metadata.fixer.schemas.BasicSchema
setNeedToBeUpdated
-
-
-
-
Method Detail
-
getTitle
String getTitle()
Return Title entry. For information dictionary represented byTitleentry, in metadata -titleentry- Returns:
- Title entry
-
setTitle
void setTitle(String title)
Set Title entry. For information dictionary represented byTitleentry, in metadata -titleentry- Parameters:
title- new Title value
-
getSubject
String getSubject()
Return Subject entry. For information dictionary represented bySubjectentry, in metadata -descriptionentry- Returns:
- Subject entry
-
setSubject
void setSubject(String description)
Set Subject entry. For information dictionary represented bySubjectentry, in metadata -descriptionentry- Parameters:
description- new Subject value
-
getAuthor
String getAuthor()
Return Author entry. For information dictionary represented byAuthorentry, in metadata -creatorentry- Returns:
- Author entry
-
setAuthor
void setAuthor(String creator)
Set Author entry. For information dictionary represented byAuthorentry, in metadata -creatorentry- Parameters:
creator- new Author value
-
-