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

syncloud.google.docs.model.CategoryTerm Maven / Gradle / Ivy

The newest version!
package syncloud.google.docs.model;

public enum CategoryTerm {

    FOLDER("http://schemas.google.com/docs/2007#folder"),
    DOCUMENT("http://schemas.google.com/docs/2007#document"),
    FILE("http://schemas.google.com/docs/2007#file"),
    TRASHED("http://schemas.google.com/g/2005/labels#trashed");

    private String term;

    CategoryTerm(String term) {
        this.term = term;
    }

    public String getTerm() {
        return term;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy