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

com.affinda.api.client.models.DocumentState Maven / Gradle / Ivy

Go to download

This package contains Java Client Library for the Affinda Resume Parser API. For documentation on how to use this package, please see https://github.com/affinda/affinda-java

There is a newer version: 3.16.0
Show newest version
package com.affinda.api.client.models;

import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;

/** Defines values for DocumentState. */
public final class DocumentState extends ExpandableStringEnum {
    /** Static value uploaded for DocumentState. */
    public static final DocumentState UPLOADED = fromString("uploaded");

    /** Static value review for DocumentState. */
    public static final DocumentState REVIEW = fromString("review");

    /** Static value validated for DocumentState. */
    public static final DocumentState VALIDATED = fromString("validated");

    /** Static value archived for DocumentState. */
    public static final DocumentState ARCHIVED = fromString("archived");

    /** Static value rejected for DocumentState. */
    public static final DocumentState REJECTED = fromString("rejected");

    /**
     * Creates or finds a DocumentState from its string representation.
     *
     * @param name a name to look for.
     * @return the corresponding DocumentState.
     */
    @JsonCreator
    public static DocumentState fromString(String name) {
        return fromString(name, DocumentState.class);
    }

    /** @return known DocumentState values. */
    public static Collection values() {
        return values(DocumentState.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy