Interface HasRevision<T>


public interface HasRevision<T>
An interface that provides a Revision with an object.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the object.
    static <T> HasRevision<T>
    of(T object, Revision revision)
    Creates a new instance with the specified object and revision.
    Returns the Revision.
  • Method Details

    • of

      static <T> HasRevision<T> of(T object, Revision revision)
      Creates a new instance with the specified object and revision.
    • revision

      Revision revision()
      Returns the Revision.
    • object

      T object()
      Returns the object.