[ Web Proxy ]
URL:
Viewing: https://developer.android.com/reference/android/support/annotation/IntDef [Back]  [Original]

IntDef  |  API reference  |  Android Developers Skip to main content
Essentials Design & Plan Develop Google Play Blog
Search:
Android Studio
Android Developers [Android Developers]
Stay organized with collections Save and categorize content based on your preferences.

IntDef

public abstract @interface IntDef
implements Annotation

android.support.annotation.IntDef


Denotes that the annotated element of integer type, represents a logical type and that its value should be one of the explicitly named constants. If the IntDef#flag() attribute is set to true, multiple constants can be combined.

Example:


  @Retention(SOURCE)
  @IntDef({NAVIGATION_MODE_STANDARD, NAVIGATION_MODE_LIST, NAVIGATION_MODE_TABS})
  public @interface NavigationMode {}
  public static final int NAVIGATION_MODE_STANDARD = 0;
  public static final int NAVIGATION_MODE_LIST = 1;
  public static final int NAVIGATION_MODE_TABS = 2;
  ...
  public abstract void setNavigationMode(@NavigationMode int mode);
  @NavigationMode
  public abstract int getNavigationMode();
 
For a flag, set the flag attribute:

  @IntDef(
      flag = true,
      value = {NAVIGATION_MODE_STANDARD, NAVIGATION_MODE_LIST, NAVIGATION_MODE_TABS})
 

See also:

Summary

Public methods

boolean flag()

Defines whether the constants can be used as a flag, or just as an enum (the default)

int[] value()

Defines the allowed constants for this element

Inherited methods

disclosure_down.png [disclosure_down.png] From interface java.lang.annotation.Annotation
abstract Class<? extends Annotation> annotationType()
abstract boolean equals(Object arg0)
abstract int hashCode()
abstract String toString()

Public methods

flag

boolean flag ()

Defines whether the constants can be used as a flag, or just as an enum (the default)

Returns
boolean

value

int[] value ()

Defines the allowed constants for this element

Returns
int[]

Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Last updated 2025-02-10 UTC.

[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[]]

Web Proxy Viewer  |  New URL  |  Original Page