Uses of Class
com.tumblr.jumblr.types.Post

Packages that use Post
com.tumblr.jumblr   
com.tumblr.jumblr.responses   
com.tumblr.jumblr.types   
 

Uses of Post in com.tumblr.jumblr
 

Methods in com.tumblr.jumblr with type parameters of type Post
<T extends Post>
T
JumblrClient.newPost(String blogName, Class<T> klass)
          Set up a new post of a given type
 

Methods in com.tumblr.jumblr that return Post
 Post JumblrClient.blogPost(String blogName, Long postId)
          Get an individual post by id
 Post JumblrClient.postReblog(String blogName, Long postId, String reblogKey)
           
 Post JumblrClient.postReblog(String blogName, Long postId, String reblogKey, Map<String,?> options)
          Reblog a given post
 

Methods in com.tumblr.jumblr that return types with arguments of type Post
 List<Post> JumblrClient.blogDraftPosts(String blogName)
           
 List<Post> JumblrClient.blogDraftPosts(String blogName, Map<String,?> options)
          Get the draft posts for a given blog
 List<Post> JumblrClient.blogLikes(String blogName)
           
 List<Post> JumblrClient.blogLikes(String blogName, Map<String,?> options)
          Get the public likes for a given blog
 List<Post> JumblrClient.blogPosts(String blogName)
           
 List<Post> JumblrClient.blogPosts(String blogName, Map<String,?> options)
          Get the posts for a given blog
 List<Post> JumblrClient.blogQueuedPosts(String blogName)
           
 List<Post> JumblrClient.blogQueuedPosts(String blogName, Map<String,?> options)
          Get the queued posts for a given blog
 List<Post> JumblrClient.blogSubmissions(String blogName)
           
 List<Post> JumblrClient.blogSubmissions(String blogName, Map<String,?> options)
          Get the submissions for a given blog
 List<Post> JumblrClient.tagged(String tag)
           
 List<Post> JumblrClient.tagged(String tag, Map<String,?> options)
          Tagged posts
 List<Post> JumblrClient.userDashboard()
           
 List<Post> JumblrClient.userDashboard(Map<String,?> options)
          Get the user dashboard for the authenticated User
 List<Post> JumblrClient.userLikes()
           
 List<Post> JumblrClient.userLikes(Map<String,?> options)
          Get the likes for the authenticated user
 

Uses of Post in com.tumblr.jumblr.responses
 

Methods in com.tumblr.jumblr.responses that return Post
 Post ResponseWrapper.getPost()
           
 

Methods in com.tumblr.jumblr.responses that return types with arguments of type Post
 List<Post> ResponseWrapper.getLikedPosts()
           
 List<Post> ResponseWrapper.getPosts()
           
 List<Post> ResponseWrapper.getTaggedPosts()
           
 

Uses of Post in com.tumblr.jumblr.types
 

Subclasses of Post in com.tumblr.jumblr.types
 class AnswerPost
          This class represents a Post of type "answer"
 class AudioPost
          This class represents a post of type "audio"
 class ChatPost
          This class represents a post of type "chat"
 class LinkPost
          This class represents a Post of type "link"
 class PhotoPost
          This class represents a post of type "photo"
 class QuotePost
          This class represents a post of type "quote"
 class TextPost
          This class represents a post of type "text"
 class UnknownTypePost
          If we can't deserialize a Post to a proper type, we'll return one of these bad boys so that people can still access the base Post attributes
 class VideoPost
          This class represents a post of type "video"
 

Methods in com.tumblr.jumblr.types with type parameters of type Post
<T extends Post>
T
Blog.newPost(Class<T> klass)
          Create a new post of a given type for this blog
 

Methods in com.tumblr.jumblr.types that return Post
 Post Blog.getPost(Long postId)
          Get an individual post by id
 Post Post.reblog(String blogName)
           
 Post Post.reblog(String blogName, Map<String,?> options)
          Reblog this post
 

Methods in com.tumblr.jumblr.types that return types with arguments of type Post
 List<Post> Blog.draftPosts()
           
 List<Post> Blog.draftPosts(Map<String,?> options)
          Get the draft posts for this blog
 List<Post> Blog.likedPosts()
           
 List<Post> Blog.likedPosts(Map<String,?> options)
          Get likes posts for this blog
 List<Post> Blog.posts()
           
 List<Post> Blog.posts(Map<String,?> options)
          Get the posts for this blog
 List<Post> Blog.queuedPosts()
           
 List<Post> Blog.queuedPosts(Map<String,?> options)
          Get the queued posts for this blog
 List<Post> Blog.submissions()
           
 List<Post> Blog.submissions(Map<String,?> options)
          Get the submissions for this blog
 



Copyright © 2013. All Rights Reserved.