Package org.pushingpixels.substance.api
Enum SubstanceConstants.ImageWatermarkKind
- java.lang.Object
-
- java.lang.Enum<SubstanceConstants.ImageWatermarkKind>
-
- org.pushingpixels.substance.api.SubstanceConstants.ImageWatermarkKind
-
- All Implemented Interfaces:
Serializable
,Comparable<SubstanceConstants.ImageWatermarkKind>
- Enclosing class:
- SubstanceConstants
public static enum SubstanceConstants.ImageWatermarkKind extends Enum<SubstanceConstants.ImageWatermarkKind>
Enumerates of image-based watermarks kinds.
-
-
Enum Constant Summary
Enum Constants Enum Constant 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.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SubstanceConstants.ImageWatermarkKind
valueOf(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.
-
-
-
Enum Constant Detail
-
SCREEN_CENTER_SCALE
public static final SubstanceConstants.ImageWatermarkKind SCREEN_CENTER_SCALE
The default behaviour. The image is centered in the screen and scaled down if necessary.
-
SCREEN_TILE
public static final SubstanceConstants.ImageWatermarkKind SCREEN_TILE
The image is tiled starting from the screen top-left corner and not scaled.
-
APP_ANCHOR
public static final SubstanceConstants.ImageWatermarkKind APP_ANCHOR
The image is anchored to the top-left corner of the application frame and not scaled.
-
APP_CENTER
public static final SubstanceConstants.ImageWatermarkKind APP_CENTER
The image is anchored to the center of the application frame and not scaled.
-
APP_TILE
public static final SubstanceConstants.ImageWatermarkKind APP_TILE
The image is tiled starting from the top-left corner of the application frame and not scaled.
-
-
Method Detail
-
values
public static SubstanceConstants.ImageWatermarkKind[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SubstanceConstants.ImageWatermarkKind c : SubstanceConstants.ImageWatermarkKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SubstanceConstants.ImageWatermarkKind valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-