Class Author

java.lang.Object
org.hansken.plugin.extraction.api.Author

public final class Author extends Object
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();
 
 
  • Method Details

    • builder

      public static Author.Builder builder()
      Start creating a new author.
      Returns:
      a builder for an author
    • name

      public String name()
      Get the name of the author.
      Returns:
      the name of the author
    • email

      public String email()
      Get the email address of the author.
      Returns:
      the email address of the author.
    • organisation

      public String organisation()
      Get the name of the organisation the author belongs to.
      Returns:
      the organisation of the author