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

From interface 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