001package com.github.gwtbootstrap.client.ui.constants;
002
003import com.github.gwtbootstrap.client.ui.base.Style;
004
005/**
006 * Style type for {@link com.github.gwtbootstrap.client.ui.Image}
007 * 
008 * @since 2.1.1.0
009 * @author ohashi keisuke
010 */
011public enum ImageType implements Style {
012    ROUNDED,CIRCLE,POLAROID;
013
014    /**
015     * {@inheritDoc}
016     */
017    @Override
018    public String get() {
019        return "img-" + this.name().toLowerCase();
020    }
021}