Enum FlowSettings.FlowType

    • 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
      • STOPPING_FLOW

        @SerializedName("Stopping Flow")
        public static final FlowSettings.FlowType STOPPING_FLOW
      • ADJUSTING_FLOW

        @SerializedName("Adjusting Flow")
        public static final FlowSettings.FlowType ADJUSTING_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 name
        java.lang.NullPointerException - if the argument is null
      • getName

        public java.lang.String getName()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<FlowSettings.FlowType>