All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.assertj.android.api.graphics.PaintFlags Maven / Gradle / Ivy

The newest version!
package org.assertj.android.api.graphics;

import android.graphics.Paint;
import android.support.annotation.IntDef;
import java.lang.annotation.Retention;

import static java.lang.annotation.RetentionPolicy.SOURCE;

@IntDef(
    flag = true,
    value = {
        Paint.ANTI_ALIAS_FLAG,
        Paint.DEV_KERN_TEXT_FLAG,
        Paint.DITHER_FLAG,
        Paint.FAKE_BOLD_TEXT_FLAG,
        Paint.FILTER_BITMAP_FLAG,
        Paint.LINEAR_TEXT_FLAG,
        Paint.STRIKE_THRU_TEXT_FLAG,
        Paint.SUBPIXEL_TEXT_FLAG,
        Paint.UNDERLINE_TEXT_FLAG
})
@Retention(SOURCE)
@interface PaintFlags {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy