public static enum SubstanceConstants.ImageWatermarkKind extends java.lang.Enum<SubstanceConstants.ImageWatermarkKind>
| Enum Constant and Description |
|---|
APP_ANCHOR
The image is anchored to the top-left corner of the application frame
and not scaled.
|
APP_CENTER
The image is anchored to the center of the application frame and not
scaled.
|
APP_TILE
The image is tiled starting from the top-left corner of the
application frame and not scaled.
|
SCREEN_CENTER_SCALE
The default behaviour.
|
SCREEN_TILE
The image is tiled starting from the screen top-left corner and not
scaled.
|
| Modifier and Type | Method and Description |
|---|---|
static SubstanceConstants.ImageWatermarkKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SubstanceConstants.ImageWatermarkKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubstanceConstants.ImageWatermarkKind SCREEN_CENTER_SCALE
public static final SubstanceConstants.ImageWatermarkKind SCREEN_TILE
public static final SubstanceConstants.ImageWatermarkKind APP_ANCHOR
public static final SubstanceConstants.ImageWatermarkKind APP_CENTER
public static final SubstanceConstants.ImageWatermarkKind APP_TILE
public static SubstanceConstants.ImageWatermarkKind[] values()
for (SubstanceConstants.ImageWatermarkKind c : SubstanceConstants.ImageWatermarkKind.values()) System.out.println(c);
public static SubstanceConstants.ImageWatermarkKind 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