Module Mal4J

Class Post

java.lang.Object
dev.katsute.mal4j.forum.Post
All Implemented Interfaces:
ID

public abstract class Post extends Object implements ID
Represents a forum post.
Since:
1.0.0
Version:
1.0.0
Author:
Katsute
See Also:
  • Constructor Details

    • Post

      public Post()
  • Method Details

    • getNumber

      public abstract Integer getNumber()
      Returns the post number.
      Returns:
      post number
      Since:
      1.0.0
    • getCreatedAt

      public abstract Date getCreatedAt()
      Returns when the post was created at.
      Returns:
      post creation time
      Since:
      1.0.0
      See Also:
    • getCreatedAtEpochMillis

      public abstract Long getCreatedAtEpochMillis()
      Returns when the post was created at as milliseconds since epoch.
      Returns:
      post creation time
      Since:
      1.0.0
      See Also:
    • getAuthor

      public abstract PostAuthor getAuthor()
      Returns the post author.
      Returns:
      post author
      Since:
      1.0.0
      See Also:
    • getBody

      public abstract String getBody()
      Returns the post body.
      Returns:
      post body
      Since:
      1.0.0
    • getSignature

      public abstract String getSignature()
      Returns the post signature.
      Returns:
      post signature
      Since:
      1.0.0
    • getForumTopicDetail

      public abstract ForumTopicDetail getForumTopicDetail()
      Returns the forum topic that the post is from.
      Returns:
      forum topic
      Since:
      1.0.0
      See Also: