org.assertj.android.api.app.NotificationFlags Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assertj-android Show documentation
Show all versions of assertj-android Show documentation
A set of AssertJ assertion helpers geared toward testing Android.
The newest version!
package org.assertj.android.api.app;
import android.app.Notification;
import android.support.annotation.IntDef;
import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.SOURCE;
@IntDef(
flag = true,
value = {
Notification.FLAG_AUTO_CANCEL,
Notification.FLAG_FOREGROUND_SERVICE,
Notification.FLAG_INSISTENT,
Notification.FLAG_NO_CLEAR,
Notification.FLAG_ONGOING_EVENT,
Notification.FLAG_ONLY_ALERT_ONCE,
Notification.FLAG_SHOW_LIGHTS,
Notification.FLAG_HIGH_PRIORITY
}
)
@Retention(SOURCE)
@interface NotificationFlags {
}