- selectAuthorPosts(long, Post.Sort, Paging, boolean) - Method in class org.attribyte.wp.db.DB
-
Selects a page of posts for an author.
- selectChildren(long, boolean) - Method in class org.attribyte.wp.db.DB
-
Gets all children for a post.
- selectModifiedPosts(Post.Type, long, long, int, boolean) - Method in class org.attribyte.wp.db.DB
-
Selects recently modified posts, in ascending order after a specified timestamp and id.
- selectModifiedPosts(EnumSet<Post.Type>, long, long, int, boolean) - Method in class org.attribyte.wp.db.DB
-
Selects recently modified posts, in ascending order after a specified timestamp and id.
- selectOption(String) - Method in class org.attribyte.wp.db.DB
-
Gets a configuration option.
- selectOption(String, String) - Method in class org.attribyte.wp.db.DB
-
Gets a configuration option with a default value.
- selectPost(long) - Method in class org.attribyte.wp.db.DB
-
Selects a post by id.
- selectPostIds(Post.Type, Post.Status, Collection<TaxonomyTerm>, Post.Sort, Paging) - Method in class org.attribyte.wp.db.DB
-
Selects a page of posts with a specified type.
- selectPostIds(EnumSet<Post.Type>, Post.Status, Collection<TaxonomyTerm>, Post.Sort, Paging) - Method in class org.attribyte.wp.db.DB
-
Selects a page of posts with associated terms and a set of types.
- selectPostMap(Collection<Long>, boolean) - Method in class org.attribyte.wp.db.DB
-
Selects posts from a collection of ids into a map.
- selectPostMeta(long) - Method in class org.attribyte.wp.db.DB
-
Selects metadata for a post.
- selectPosts(Post.Type, Post.Status, Post.Sort, Paging, boolean) - Method in class org.attribyte.wp.db.DB
-
Selects a page of posts with a specific type.
- selectPosts(EnumSet<Post.Type>, Post.Status, Post.Sort, Paging, boolean) - Method in class org.attribyte.wp.db.DB
-
Selects a page of posts with a set of specified types.
- selectPosts(String, boolean) - Method in class org.attribyte.wp.db.DB
-
Selects all posts with a "slug".
- selectPosts(Collection<Long>, boolean) - Method in class org.attribyte.wp.db.DB
-
Selects posts from a collection of ids into a list in input order.
- selectPostTerms(long) - Method in class org.attribyte.wp.db.DB
-
Selects all terms associated with a post for any taxonomy.
- selectPostTerms(long, String) - Method in class org.attribyte.wp.db.DB
-
Selects all terms associated with a post.
- selectPostTermsSQL - Variable in class org.attribyte.wp.db.DB
-
- selectPublicBlogs() - Method in class org.attribyte.wp.db.DB
-
Selects all public, enabled blogs.
- selectSite() - Method in class org.attribyte.wp.db.DB
-
Selects the site metadata from the options table.
- selectTaxonomyTerm(String, String) - Method in class org.attribyte.wp.db.DB
-
Selects a taxonomy term.
- selectTerm(long) - Method in class org.attribyte.wp.db.DB
-
Selects a term by id.
- selectTermIds(String) - Method in class org.attribyte.wp.db.DB
-
Selects the term ids for all with the specified name.
- selectTermMeta(long) - Method in class org.attribyte.wp.db.DB
-
Selects metadata for a term.
- selectUser(String) - Method in class org.attribyte.wp.db.DB
-
Selects a user by username.
- selectUser(long) - Method in class org.attribyte.wp.db.DB
-
Selects a user from the database.
- setAuthor(User) - Method in class org.attribyte.wp.model.Post.Builder
-
Sets the author.
- setAuthorId(long) - Method in class org.attribyte.wp.model.Post.Builder
-
Sets the author id.
- setChildren(List<Post>) - Method in class org.attribyte.wp.model.Post.Builder
-
Sets the children.
- setCommentCount(int) - Method in class org.attribyte.wp.model.Post.Builder
-
Sets the comment count.
- setContent(String) - Method in class org.attribyte.wp.model.Post.Builder
-
Sets the content.
- setExcerpt(String) - Method in class org.attribyte.wp.model.Post.Builder
-
Sets the excerpt.
- setGUID(String) - Method in class org.attribyte.wp.model.Post.Builder
-
Sets the GUID.
- setId(long) - Method in class org.attribyte.wp.model.Post.Builder
-
Sets the id.
- setMetadata(List<Meta>) - Method in class org.attribyte.wp.model.Post.Builder
-
Sets the metadata.
- setMimeType(String) - Method in class org.attribyte.wp.model.Post.Builder
-
Sets the mime type.
- setModifiedTimestamp(long) - Method in class org.attribyte.wp.model.Post.Builder
-
Sets the last modified timestamp.
- setParentId(long) - Method in class org.attribyte.wp.model.Post.Builder
-
Sets the parent id.
- setPostMeta(long, List<Meta>) - Method in class org.attribyte.wp.db.DB
-
Sets metadata for a post.
- setPostTerms(long, String, List<String>) - Method in class org.attribyte.wp.db.DB
-
Sets terms associated with a post, replacing any existing terms with the specified taxonomy.
- setPublishTimestamp(long) - Method in class org.attribyte.wp.model.Post.Builder
-
Sets the publish timestamp.
- setSlug(String) - Method in class org.attribyte.wp.model.Post.Builder
-
Sets the slug.
- setStatus(Post.Status) - Method in class org.attribyte.wp.model.Post.Builder
-
Sets the status.
- setTaxonomyTermDescription(String, String, String) - Method in class org.attribyte.wp.db.DB
-
Sets the description for a taxonomy term.
- setTaxonomyTerms(List<TaxonomyTerm>) - Method in class org.attribyte.wp.model.Post.Builder
-
Sets terms for a taxonomy, replacing any existing.
- setTermMeta(long, List<Meta>) - Method in class org.attribyte.wp.db.DB
-
Sets metadata for a term.
- setTitle(String) - Method in class org.attribyte.wp.model.Post.Builder
-
Sets the title.
- setType(Post.Type) - Method in class org.attribyte.wp.model.Post.Builder
-
Sets the post type.
- Shortcode - Class in org.attribyte.wp.model
-
A shortcode.
- Shortcode(String, Map<String, String>) - Constructor for class org.attribyte.wp.model.Shortcode
-
Creates a shortcode without content.
- Shortcode(String, Map<String, String>, String) - Constructor for class org.attribyte.wp.model.Shortcode
-
Creates a shortcode with content.
- shortcode(Shortcode) - Method in interface org.attribyte.wp.model.ShortcodeParser.Handler
-
Parsed a shortcode.
- Shortcode.Type - Enum in org.attribyte.wp.model
-
The type (enclosing or self-closing).
- ShortcodeParser - Class in org.attribyte.wp.model
-
- ShortcodeParser() - Constructor for class org.attribyte.wp.model.ShortcodeParser
-
- ShortcodeParser.Handler - Interface in org.attribyte.wp.model
-
A handler for shortcode parse events.
- SimpleConnectionSource - Class in org.attribyte.wp.db
-
Creates a new connection on every invocation.
- SimpleConnectionSource(Properties) - Constructor for class org.attribyte.wp.db.SimpleConnectionSource
-
Creates a simple connection source.
- Site - Class in org.attribyte.wp.model
-
An immutable site.
- Site(Properties) - Constructor for class org.attribyte.wp.model.Site
-
Creates site metadata from properties.
- Site(long, String, String, String, String, Term) - Constructor for class org.attribyte.wp.model.Site
-
Creates a site.
- siteId - Variable in class org.attribyte.wp.db.DB
-
The site id.
- siteId - Variable in class org.attribyte.wp.model.Blog
-
The associated site id.
- slug - Variable in class org.attribyte.wp.model.Post
-
The slug.
- slug - Variable in class org.attribyte.wp.model.Term
-
The slug.
- slug - Variable in class org.attribyte.wp.model.User
-
A slug for the author.
- slugify(String) - Static method in class org.attribyte.wp.Util
-
Creates a slug from a string.
- start - Variable in class org.attribyte.wp.model.Paging
-
The start index.
- startIsOpen - Variable in class org.attribyte.wp.model.Paging
-
The start timestamp of this interval is open (excluded).
- status - Variable in class org.attribyte.wp.model.Post
-
The status.
- value - Variable in class org.attribyte.wp.model.Meta
-
The value.
- value(String) - Method in class org.attribyte.wp.model.Shortcode
-
Gets an attribute value.
- valueOf(String) - Static method in enum org.attribyte.wp.model.Post.CommentStatus
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.attribyte.wp.model.Post.Sort
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.attribyte.wp.model.Post.Status
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.attribyte.wp.model.Post.Type
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.attribyte.wp.model.Shortcode.Type
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum org.attribyte.wp.model.Post.CommentStatus
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.attribyte.wp.model.Post.Sort
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.attribyte.wp.model.Post.Status
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.attribyte.wp.model.Post.Type
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.attribyte.wp.model.Shortcode.Type
-
Returns an array containing the constants of this enum type, in
the order they are declared.