Enum Context2d.Composite

    • Enum Constant Detail

      • COPY

        public static final Context2d.Composite COPY
        A (B is ignored). Display the source image instead of the destination image.
      • DESTINATION_ATOP

        public static final Context2d.Composite DESTINATION_ATOP
        B atop A. Same as source-atop but using the destination image instead of the source image and vice versa.
      • DESTINATION_IN

        public static final Context2d.Composite DESTINATION_IN
        B in A. Same as source-in but using the destination image instead of the source image and vice versa.
      • DESTINATION_OUT

        public static final Context2d.Composite DESTINATION_OUT
        B out A. Same as source-out but using the destination image instead of the source image and vice versa.
      • DESTINATION_OVER

        public static final Context2d.Composite DESTINATION_OVER
        B over A. Same as source-over but using the destination image instead of the source image and vice versa.
      • LIGHTER

        public static final Context2d.Composite LIGHTER
        A plus B. Display the sum of the source image and destination image, with color values approaching 1 as a limit.
      • SOURCE_ATOP

        public static final Context2d.Composite SOURCE_ATOP
        A atop B. Display the source image wherever both images are opaque. Display the destination image wherever the destination image is opaque but the source image is transparent. Display transparency elsewhere.
      • SOURCE_IN

        public static final Context2d.Composite SOURCE_IN
        A in B. Display the source image wherever both the source image and destination image are opaque. Display transparency elsewhere.
      • SOURCE_OUT

        public static final Context2d.Composite SOURCE_OUT
        A out B. Display the source image wherever the source image is opaque and the destination image is transparent. Display transparency elsewhere.
      • SOURCE_OVER

        public static final Context2d.Composite SOURCE_OVER
        A over B. Display the source image wherever the source image is opaque. Display the destination image elsewhere.
      • XOR

        public static final Context2d.Composite XOR
        A xor B. Exclusive OR of the source image and destination image.
    • Method Detail

      • values

        public static Context2d.Composite[] 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 (Context2d.Composite c : Context2d.Composite.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Context2d.Composite valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getValue

        public java.lang.String getValue()