Class Author
java.lang.Object
org.hansken.plugin.extraction.api.Author
An author of a certain
extraction plugin
.
Example for creating an author:
Author.builder()
.name("John")
.email("johndoe@email.com")
.organisation("Netherlands Forensic Institute")
.build();
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionstatic Author.Builder
builder()
Start creating a newauthor
.email()
Get the email address of the author.name()
Get the name of the author.Get the name of the organisation the author belongs to.
-
Method Details
-
builder
Start creating a newauthor
.- Returns:
- a builder for an author
-
name
Get the name of the author.- Returns:
- the name of the author
-
email
Get the email address of the author.- Returns:
- the email address of the author.
-
organisation
Get the name of the organisation the author belongs to.- Returns:
- the organisation of the author
-