public enum BkgndRepeat extends java.lang.Enum<BkgndRepeat> implements ValueEnum
| Enum Constant and Description | 
|---|
NO_REPEAT
Don't tile the background image at all. 
 | 
REPEAT
Tile the background image horizontally and vertically. 
 | 
REPEAT_X
Repeat the background image horizontally but not vertically. 
 | 
REPEAT_Y
Repeat the background image vertically but not horizontally. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.String | 
getValue()  | 
static BkgndRepeat | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static BkgndRepeat[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final BkgndRepeat REPEAT
public static final BkgndRepeat NO_REPEAT
public static final BkgndRepeat REPEAT_X
public static final BkgndRepeat REPEAT_Y
public static BkgndRepeat[] values()
for (BkgndRepeat c : BkgndRepeat.values()) System.out.println(c);
public static BkgndRepeat 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 namejava.lang.NullPointerException - if the argument is null