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

com.googlecode.googleplus.model.moments.MomentCollection Maven / Gradle / Ivy

The newest version!
package com.googlecode.googleplus.model.moments;

public enum MomentCollection {
    VAULT("vault");
    private String collectionName;

    private MomentCollection(String collectionName) {
        this.collectionName = collectionName;
    }
    public String getCollectionName() {
        return collectionName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy