com.afrozaar.wordpress.wpapi.v2.model.PostStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wp-api-v2-client-java Show documentation
Show all versions of wp-api-v2-client-java Show documentation
A Java client implementation to the WordPress WP-API v2 plugin.
package com.afrozaar.wordpress.wpapi.v2.model;
public enum PostStatus {
draft,
publish,
pending,
future,
private_("private");
public final String value;
PostStatus() {
this.value = this.name().toLowerCase();
}
PostStatus(String value) {
this.value = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy