syncloud.google.docs.model.LinkRel 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;
/**
* User: bob
* Date: 7/4/11
*/
public enum LinkRel {
SELF("self"),
ALTERNATE("alternate"),
PARENT("http://schemas.google.com/docs/2007#parent"),
RESUMABLE("http://schemas.google.com/g/2005#resumable-create-media"),
NEXT("next");
private String type;
LinkRel(String type){
this.type = type;
}
public String getType() {
return type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy