public static final enum

ImageResource.RepeatStyle

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.google.gwt.resources.client.ImageResource.RepeatStyle

Class Overview

Indicates that an ImageResource should be bundled in such a way as to support horizontal or vertical repetition.

Summary

Enum Values
ImageResource.RepeatStyle  Both  The image is intended to be tiled both horizontally and vertically. 
ImageResource.RepeatStyle  Horizontal  The image is intended to be tiled horizontally. 
ImageResource.RepeatStyle  None  The image is not intended to be tiled. 
ImageResource.RepeatStyle  Vertical  The image is intended to be tiled vertically. 
Public Methods
static ImageResource.RepeatStyle valueOf(String name)
final static RepeatStyle[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final ImageResource.RepeatStyle Both

The image is intended to be tiled both horizontally and vertically. Note that this will prevent compositing of the particular image in most cases.

public static final ImageResource.RepeatStyle Horizontal

The image is intended to be tiled horizontally.

public static final ImageResource.RepeatStyle None

The image is not intended to be tiled.

public static final ImageResource.RepeatStyle Vertical

The image is intended to be tiled vertically.

Public Methods

public static ImageResource.RepeatStyle valueOf (String name)

public static final RepeatStyle[] values ()