FloatRange
public abstract @interface FloatRange
implements Annotation
| android.support.annotation.FloatRange |
Denotes that the annotated element should be a float or double in the given range
Example:
@FloatRange(from=0.0,to=1.0) public float getAlpha() { ... } Summary
Public methods | |
|---|---|
double | from() Smallest value. |
boolean | fromInclusive() Whether the from value is included in the range |
double | to() Largest value. |
boolean | toInclusive() Whether the to value is included in the range |
Inherited methods | |
|---|---|
java.lang.annotation.Annotation | |
Public methods
from
double from ()
Smallest value. Whether it is inclusive or not is determined by fromInclusive()
| Returns | |
|---|---|
double | |
fromInclusive
boolean fromInclusive ()
Whether the from value is included in the range
| Returns | |
|---|---|
boolean | |
to
double to ()
Largest value. Whether it is inclusive or not is determined by toInclusive()
| Returns | |
|---|---|
double | |
toInclusive
boolean toInclusive ()
Whether the to value is included in the range
| Returns | |
|---|---|
boolean | |
Annotations
- AnimatorRes
- AnimRes
- AnyRes
- AnyThread
- ArrayRes
- AttrRes
- BinderThread
- BoolRes
- CallSuper
- CheckResult
- ColorInt
- ColorLong
- ColorRes
- DimenRes
- Dimension
- DrawableRes
- FloatRange
- FontRes
- FractionRes
- GuardedBy
- HalfFloat
- IdRes
- IntDef
- IntegerRes
- InterpolatorRes
- IntRange
- Keep
- LayoutRes
- LongDef
- MainThread
- MenuRes
- NavigationRes
- NonNull
- Nullable
- PluralsRes
- Px
- RawRes
- RequiresApi
- RequiresPermission
- RequiresPermission.Read
- RequiresPermission.Write
- RestrictTo
- Size
- StringDef
- StringRes
- StyleableRes
- StyleRes
- TransitionRes
- UiThread
- VisibleForTesting
- WorkerThread
- XmlRes
Enums