public class PowerRange
extends java.lang.Object
Constructor and Description |
---|
PowerRange()
Create an instance of the PowerRange class.
|
PowerRange(int min,
int max)
Create an instance of the PowerRange class.
|
Modifier and Type | Method and Description |
---|---|
int |
getMax()
Returns the maximum Power Gian Level value for a PowerRange instance.
|
int |
getMin()
Returns the Power Gian Level minimum value for a PowerRange instance.
|
void |
setMax(int max)
Sets the maximum Power Gian Level value for a PowerRange instance.
|
void |
setMin(int min)
Sets the Power Gian Level minimum value for a PowerRange instance.
|
java.lang.String |
toString()
Return the PowerRange information with format: [Min], [Max]
|
public PowerRange()
public PowerRange(int min, int max)
min
- An integer representing the minimum value of the Power Gain Level. The unit is dBm.max
- An integer representing the maximum value of the Power Gain Level. The unit is dBm.public int getMin()
public void setMin(int min)
min
- An integer representing the minimum value of the Power Gain Level. The unit is dBm.public int getMax()
public void setMax(int max)
max
- An integer representing the maximum value of the Power Gain Level. The unit is dBm.public java.lang.String toString()
toString
in class java.lang.Object