|
GWT 2.7.0 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ImageResource.RepeatStyle> com.google.gwt.resources.client.ImageResource.RepeatStyle
public static enum ImageResource.RepeatStyle
Indicates that an ImageResource should be bundled in such a way as to support horizontal or vertical repetition.
Enum Constant Summary | |
---|---|
Both
The image is intended to be tiled both horizontally and vertically. |
|
Horizontal
The image is intended to be tiled horizontally. |
|
None
The image is not intended to be tiled. |
|
Vertical
The image is intended to be tiled vertically. |
Method Summary | |
---|---|
static ImageResource.RepeatStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ImageResource.RepeatStyle[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ImageResource.RepeatStyle None
public static final ImageResource.RepeatStyle Horizontal
public static final ImageResource.RepeatStyle Vertical
public static final ImageResource.RepeatStyle Both
Method Detail |
---|
public static ImageResource.RepeatStyle[] values()
for (ImageResource.RepeatStyle c : ImageResource.RepeatStyle.values()) System.out.println(c);
public static ImageResource.RepeatStyle valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
GWT 2.7.0 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |