Enum ClientSteeringOptimizer.CLIENT_STEERING_ACTIONS
- java.lang.Object
-
- java.lang.Enum<ClientSteeringOptimizer.CLIENT_STEERING_ACTIONS>
-
- com.facebook.openwifi.rrm.optimizers.clientsteering.ClientSteeringOptimizer.CLIENT_STEERING_ACTIONS
-
- All Implemented Interfaces:
Serializable
,Comparable<ClientSteeringOptimizer.CLIENT_STEERING_ACTIONS>
- Enclosing class:
- ClientSteeringOptimizer
public static enum ClientSteeringOptimizer.CLIENT_STEERING_ACTIONS extends Enum<ClientSteeringOptimizer.CLIENT_STEERING_ACTIONS>
Represents client steering actions an AP can take
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEAUTHENTICATE
Deauthenticate clientSTEER_DOWN
Steer from 5G/6G to 2GSTEER_UP
Steer from 2G to 5G/6G
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ClientSteeringOptimizer.CLIENT_STEERING_ACTIONS
valueOf(String name)
Returns the enum constant of this type with the specified name.static ClientSteeringOptimizer.CLIENT_STEERING_ACTIONS[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STEER_UP
public static final ClientSteeringOptimizer.CLIENT_STEERING_ACTIONS STEER_UP
Steer from 2G to 5G/6G
-
STEER_DOWN
public static final ClientSteeringOptimizer.CLIENT_STEERING_ACTIONS STEER_DOWN
Steer from 5G/6G to 2G
-
DEAUTHENTICATE
public static final ClientSteeringOptimizer.CLIENT_STEERING_ACTIONS DEAUTHENTICATE
Deauthenticate client
-
-
Method Detail
-
values
public static ClientSteeringOptimizer.CLIENT_STEERING_ACTIONS[] 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 (ClientSteeringOptimizer.CLIENT_STEERING_ACTIONS c : ClientSteeringOptimizer.CLIENT_STEERING_ACTIONS.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClientSteeringOptimizer.CLIENT_STEERING_ACTIONS 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
-
-