ch.viascom.hipchat.api.models.card.CardAttributeValueStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hipchat-api Show documentation
Show all versions of hipchat-api Show documentation
A HipChat v2 API full implementation for Java
package ch.viascom.hipchat.api.models.card;
import com.google.gson.annotations.SerializedName;
import java.io.Serializable;
/**
* Created by patrickboesch on 11.04.16.
*/
public enum CardAttributeValueStyle implements Serializable {
@SerializedName("lozenge-success")
LOZENGE_SUCCESS,
@SerializedName("lozenge-error")
LOZENGE_ERROR,
@SerializedName("lozenge-current")
LOZENGE_CURRENT,
@SerializedName("lozenge-complete")
LOZENGE_COMPLETE,
@SerializedName("lozenge-moved")
LOZENGE_MOVED,
@SerializedName("lozenge")
LOZENGE;
}