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

org.assertj.android.api.view.DisplayFlags Maven / Gradle / Ivy

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

import android.support.annotation.IntDef;
import android.view.Display;
import java.lang.annotation.Retention;

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

@IntDef(
    flag = true,
    value = {
        Display.FLAG_PRESENTATION,
        Display.FLAG_PRIVATE,
        Display.FLAG_SECURE,
        Display.FLAG_SUPPORTS_PROTECTED_BUFFERS
    }
)
@Retention(SOURCE)
@interface DisplayFlags {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy