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

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

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