Package com.epicbot.api.shared.bot.mouse
Enum FlowSettings.FlowType
- java.lang.Object
-
- java.lang.Enum<FlowSettings.FlowType>
-
- com.epicbot.api.shared.bot.mouse.FlowSettings.FlowType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FlowSettings.FlowType>
- Enclosing class:
- FlowSettings
public static enum FlowSettings.FlowType extends java.lang.Enum<FlowSettings.FlowType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADJUSTING_FLOW
CONSTANT_SPEED_FLOW
INTERRUPTED_FLOW
INTERRUPTED_FLOW_2
JAGGED_FLOW
RANDOM_FLOW
SLOW_STARTUP_FLOW
SLOW_STARTUP_FLOW_2
STOPPING_FLOW
VARIATING_FLOW
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
java.lang.String
toString()
static FlowSettings.FlowType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FlowSettings.FlowType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VARIATING_FLOW
@SerializedName("Variating Flow") public static final FlowSettings.FlowType VARIATING_FLOW
-
INTERRUPTED_FLOW
@SerializedName("Interrupted Flow") public static final FlowSettings.FlowType INTERRUPTED_FLOW
-
INTERRUPTED_FLOW_2
@SerializedName("Interrupted Flow 2") public static final FlowSettings.FlowType INTERRUPTED_FLOW_2
-
SLOW_STARTUP_FLOW
@SerializedName("Slow Startup Flow") public static final FlowSettings.FlowType SLOW_STARTUP_FLOW
-
SLOW_STARTUP_FLOW_2
@SerializedName("Slow Startup Flow 2") public static final FlowSettings.FlowType SLOW_STARTUP_FLOW_2
-
JAGGED_FLOW
@SerializedName("Jagged Flow") public static final FlowSettings.FlowType JAGGED_FLOW
-
STOPPING_FLOW
@SerializedName("Stopping Flow") public static final FlowSettings.FlowType STOPPING_FLOW
-
ADJUSTING_FLOW
@SerializedName("Adjusting Flow") public static final FlowSettings.FlowType ADJUSTING_FLOW
-
RANDOM_FLOW
@SerializedName("Random Flow") public static final FlowSettings.FlowType RANDOM_FLOW
-
CONSTANT_SPEED_FLOW
@SerializedName("Constant Speed Flow") public static final FlowSettings.FlowType CONSTANT_SPEED_FLOW
-
-
Method Detail
-
values
public static FlowSettings.FlowType[] 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 (FlowSettings.FlowType c : FlowSettings.FlowType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FlowSettings.FlowType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getName
public java.lang.String getName()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<FlowSettings.FlowType>
-
-