// "Therefore those skilled at the unorthodox
// are infinite as heaven and earth,
// inexhaustible as the great rivers.
// When they come to an end,
// they begin again,
// like the days and months;
// they die and are reborn,
// like the four seasons."
//
// - Sun Tsu,
// "The Art of War"
package com.theartofdev.fastimageloaderdemo;
/**
* Consts of image loading spec keys.
*/
public final class Specs {
private Specs() {
}
public static final String UNBOUNDED_MAX = "UnboundedMax";
public static final String IMG_IX_UNBOUNDED = "ImgIXUnbounded";
public static final String IMG_IX_IMAGE = "ImgIXImage";
public static final String INSTA_AVATAR = "InstagramAvatar";
public static final String INSTA_IMAGE = "InstagramImage";
}