syncloud.google.docs.model.CategoryScheme Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of syncloud-google-docs Show documentation
Show all versions of syncloud-google-docs Show documentation
Google Docs Syncloud Starage Adapter
The newest version!
package syncloud.google.docs.model;
public enum CategoryScheme {
KIND("http://schemas.google.com/g/2005#kind"),
LABELS("http://schemas.google.com/g/2005/labels");
private String scheme;
CategoryScheme(String scheme){
this.scheme = scheme;
}
public String getScheme() {
return scheme;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy