Package com.facebook.openwifi.rrm
Enum RRMAlgorithm.AlgorithmType
- java.lang.Object
-
- java.lang.Enum<RRMAlgorithm.AlgorithmType>
-
- com.facebook.openwifi.rrm.RRMAlgorithm.AlgorithmType
-
- All Implemented Interfaces:
Serializable
,Comparable<RRMAlgorithm.AlgorithmType>
- Enclosing class:
- RRMAlgorithm
public static enum RRMAlgorithm.AlgorithmType extends Enum<RRMAlgorithm.AlgorithmType>
RRM algorithm type enum.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ClientSteering
OptimizeChannel
OptimizeTxPower
-
Field Summary
Fields Modifier and Type Field Description String
description
The description.String
longName
The long name.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RRMAlgorithm.AlgorithmType
valueOf(String name)
Returns the enum constant of this type with the specified name.static RRMAlgorithm.AlgorithmType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OptimizeChannel
public static final RRMAlgorithm.AlgorithmType OptimizeChannel
-
OptimizeTxPower
public static final RRMAlgorithm.AlgorithmType OptimizeTxPower
-
ClientSteering
public static final RRMAlgorithm.AlgorithmType ClientSteering
-
-
Method Detail
-
values
public static RRMAlgorithm.AlgorithmType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RRMAlgorithm.AlgorithmType c : RRMAlgorithm.AlgorithmType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RRMAlgorithm.AlgorithmType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-