javax.media.protocol
Class RateRange

java.lang.Object
  extended by javax.media.protocol.RateRange
All Implemented Interfaces:
java.io.Serializable

public class RateRange
extends java.lang.Object
implements java.io.Serializable

Standard JMF class -- see this class in the JMF Javadoc. Complete.

Author:
Ken Larson
See Also:
Serialized Form

Constructor Summary
RateRange(float init, float min, float max, boolean isExact)
           
RateRange(RateRange r)
           
 
Method Summary
 float getCurrentRate()
           
 float getMaximumRate()
           
 float getMinimumRate()
           
 boolean inRange(float rate)
           
 boolean isExact()
           
 float setCurrentRate(float rate)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RateRange

public RateRange(RateRange r)

RateRange

public RateRange(float init,
                 float min,
                 float max,
                 boolean isExact)
Method Detail

setCurrentRate

public float setCurrentRate(float rate)

getCurrentRate

public float getCurrentRate()

getMinimumRate

public float getMinimumRate()

getMaximumRate

public float getMaximumRate()

inRange

public boolean inRange(float rate)

isExact

public boolean isExact()