All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.afrozaar.wordpress.wpapi.v2.model.PostStatus Maven / Gradle / Ivy

There is a newer version: 4.8.3
Show newest version
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