Package control
Enum AbstractController.Algorithm
- java.lang.Object
-
- java.lang.Enum<AbstractController.Algorithm>
-
- control.AbstractController.Algorithm
-
- All Implemented Interfaces:
Serializable
,Comparable<AbstractController.Algorithm>
- Enclosing class:
- AbstractController
public static enum AbstractController.Algorithm extends Enum<AbstractController.Algorithm>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description frflow
lg_lanechange
lg_restrict
lg_toll
linkflow
plugin
rm_alinea
rm_closed
rm_fixed_rate
rm_open
schedule
sig
sig_pretimed
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractController.Algorithm
valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractController.Algorithm[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
schedule
public static final AbstractController.Algorithm schedule
-
sig
public static final AbstractController.Algorithm sig
-
sig_pretimed
public static final AbstractController.Algorithm sig_pretimed
-
rm_alinea
public static final AbstractController.Algorithm rm_alinea
-
rm_fixed_rate
public static final AbstractController.Algorithm rm_fixed_rate
-
rm_open
public static final AbstractController.Algorithm rm_open
-
rm_closed
public static final AbstractController.Algorithm rm_closed
-
lg_restrict
public static final AbstractController.Algorithm lg_restrict
-
lg_toll
public static final AbstractController.Algorithm lg_toll
-
lg_lanechange
public static final AbstractController.Algorithm lg_lanechange
-
frflow
public static final AbstractController.Algorithm frflow
-
linkflow
public static final AbstractController.Algorithm linkflow
-
plugin
public static final AbstractController.Algorithm plugin
-
-
Method Detail
-
values
public static AbstractController.Algorithm[] 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 (AbstractController.Algorithm c : AbstractController.Algorithm.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractController.Algorithm 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
-
-