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

ch.viascom.hipchat.api.models.user.UserPhotoSize Maven / Gradle / Ivy

There is a newer version: 2.1-RC3
Show newest version
package ch.viascom.hipchat.api.models.user;

import com.google.gson.annotations.SerializedName;

import java.io.Serializable;

/**
 * Created by patrickboesch on 19.04.16.
 */
public enum UserPhotoSize implements Serializable {
    @SerializedName("big")
    BIG("big"),
    @SerializedName("small")
    SMALL("small");

    private final String text;

    UserPhotoSize(final String text) {
        this.text = text;
    }

    @Override
    public String toString() {
        return text;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy