Interface RatingOrBuilder (2.2.9)

public interface RatingOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getInterval()

public abstract double getInterval()

The steps within the score (for example, interval = 1 max = 5 min = 1 indicates that the score can be 1, 2, 3, 4, or 5)

double interval = 4;

Returns
TypeDescription
double

The interval.

getMax()

public abstract double getMax()

The maximum value for the score.

double max = 3;

Returns
TypeDescription
double

The max.

getMin()

public abstract double getMin()

The minimum value for the score.

double min = 2;

Returns
TypeDescription
double

The min.

getOverall()

public abstract double getOverall()

Overall score.

double overall = 1;

Returns
TypeDescription
double

The overall.