public static enum BackgroundImage.Repeat extends java.lang.Enum<BackgroundImage.Repeat>
| Modifier and Type | Method and Description |
|---|---|
static BackgroundImage.Repeat |
fromODT(java.lang.String str)
Returns the correct
BackgroundImage.Repeat for a image. |
static BackgroundImage.Repeat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BackgroundImage.Repeat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BackgroundImage.Repeat STRETCH
public static final BackgroundImage.Repeat NONE
public static final BackgroundImage.Repeat BOTH
public static BackgroundImage.Repeat[] values()
for (BackgroundImage.Repeat c : BackgroundImage.Repeat.values()) System.out.println(c);
public static BackgroundImage.Repeat 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 nullpublic static BackgroundImage.Repeat fromODT(java.lang.String str)
BackgroundImage.Repeat for a image.str - the string containing the ODF repeat value.java.lang.IllegalArgumentException - when the value is not definedCopyright © 2022. All Rights Reserved.