Class Person

    • Constructor Detail

      • Person

        public Person()
    • Method Detail

      • getName

        public String getName()
        Conveys a human-readable name for the person.
        Returns:
        a human-readable name for the person.
      • setName

        public void setName​(String name)
        a human-readable name for the person.
        Parameters:
        name - a human-readable name for the person.
      • getUri

        public URI getUri()
        an IRI associated with the person.
        Returns:
        an IRI associated with the person.
      • setUri

        public void setUri​(URI uri)
        an IRI associated with the person.
        Parameters:
        uri - an IRI associated with the person.
      • getEmail

        public String getEmail()
        an e-mail address associated with the person.
        Returns:
        an e-mail address associated with the person.
      • setEmail

        public void setEmail​(String email)
        an e-mail address associated with the person.
        Parameters:
        email - an e-mail address associated with the person.
      • accept

        public void accept​(AtomModelVisitor visitor)
        Accept a visitor.
        Parameters:
        visitor - The visitor to accept.