AI-generated Key Takeaways
-
FeatureStatus is an abstract interface that represents the status of a feature.
-
The available constant values describe whether a feature is AVAILABLE, DOWNLOADABLE, DOWNLOADING, or UNAVAILABLE.
public abstract @interface FeatureStatus implements Annotation
The status of the feature.
Constant Summary
int | AVAILABLE | The feature is fully downloaded and ready to use. |
int | DOWNLOADABLE | The feature can be downloaded on request. |
int | DOWNLOADING | The feature is being downloaded. |
int | UNAVAILABLE | The feature is unavailable. |
Inherited Method Summary
Constants
public static final int AVAILABLE
The feature is fully downloaded and ready to use.
Constant Value: 3
public static final int DOWNLOADABLE
The feature can be downloaded on request.
Constant Value: 1
public static final int DOWNLOADING
The feature is being downloaded.
Constant Value: 2
public static final int UNAVAILABLE
The feature is unavailable.
Constant Value: 0