goog.provide('M.style.pattern');
/**
* @namespace M.style.pattern
*/
(function() {
/**
* Hatch style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.HATCH = "HATCH";
/**
* Cross style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.CROSS = "CROSS";
/**
* Dot style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.DOT = "DOT";
/**
* Cirlce style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.CIRCLE = "CIRCLE";
/**
* Square style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.SQUARE = "SQUARE";
/**
* Tile style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.TILE = "TILE";
/**
* Woven style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.WOVEN = "WOVEN";
/**
* Crosses style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.CROSSES = "CROSSES";
/**
* Caps style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.CAPS = "CAPS";
/**
* Nylon style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.NYLON = "NYLON";
/**
* Hexagon style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.HEXAGON = "HEXAGON";
/**
* Cementery style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.CEMETRY = "CEMETRY";
/**
* Sand style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.SAND = "SAND";
/**
* Conglomerate style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.CONGLOMERATE = "CONGLOMERATE";
/**
* Gravel style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.GRAVEL = "GRAVEL";
/**
* Brick style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.BRICK = "BRICK";
/**
* Dolomite style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.DOLOMITE = "DOLOMITE";
/**
* Coal style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.COAL = "COAL";
/**
* Brevvia style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.BRECCIA = "BRECCIA";
/**
* Clay style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.CLAY = "CLAY";
/**
* Flooded style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.FLOODED = "FLOODED";
/**
* Chaos style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.CHAOS = "CHAOS";
/**
* Grass style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.GRASS = "GRASS";
/**
* Swamp style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.SWAMP = "SWAMP";
/**
* Wave style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.WAVE = "WAVE";
/**
* Vine style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.VINE = "VINE";
/**
* Forest style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.FOREST = "FOREST";
/**
* Scrub style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.SCRUB = "SCRUB";
/**
* Tree style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.TREE = "TREE";
/**
* Pine style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.PINE = "PINE";
/**
* Pines style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.PINES = "PINES";
/**
* Rock style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.ROCK = "ROCK";
/**
* Rocks style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.ROCKS = "ROCKS";
/**
* Character style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.CHARACTER = "CHARACTER";
/**
* Icon style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.ICON = "ICON";
/**
* Image style pattern
* @const
* @type {string}
* @public
* @api stable
*/
M.style.pattern.IMAGE = "IMAGE";
})();