Interface HasFacts

All Known Implementing Classes:
Person, Relationship

public interface HasFacts
Conclusion data that has facts.
Author:
Ryan Heaton
  • Method Summary

    Modifier and Type
    Method
    Description
    default Stream<Fact>
    Create a stream of facts.
    The conclusions about the facts of a conclusion resource.
    void
    setFacts(List<Fact> facts)
    The fact conclusions for the person.
  • Method Details

    • getFacts

      List<Fact> getFacts()
      The conclusions about the facts of a conclusion resource.
      Returns:
      The conclusions about the facts of a conclusion resource.
    • setFacts

      void setFacts(List<Fact> facts)
      The fact conclusions for the person.
      Parameters:
      facts - The fact conclusions for the person.
    • facts

      default Stream<Fact> facts()
      Create a stream of facts.
      Returns:
      a stream of facts.