Package io.anyline2.viewplugin
Enum ScanFeedbackConfig.FeedbackAnimationStyle
- java.lang.Object
-
- java.lang.Enum<ScanFeedbackConfig.FeedbackAnimationStyle>
-
- io.anyline2.viewplugin.ScanFeedbackConfig.FeedbackAnimationStyle
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ScanFeedbackConfig.FeedbackAnimationStyle>
- Enclosing class:
- ScanFeedbackConfig
public static enum ScanFeedbackConfig.FeedbackAnimationStyle extends java.lang.Enum<ScanFeedbackConfig.FeedbackAnimationStyle>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Blink
Kitt
None
Pulse
PulseRandom
Resize
TraverseMulti
TraverseSingle
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ScanFeedbackConfig.FeedbackAnimationStyle
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ScanFeedbackConfig.FeedbackAnimationStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TraverseSingle
public static final ScanFeedbackConfig.FeedbackAnimationStyle TraverseSingle
-
TraverseMulti
public static final ScanFeedbackConfig.FeedbackAnimationStyle TraverseMulti
-
Kitt
public static final ScanFeedbackConfig.FeedbackAnimationStyle Kitt
-
Blink
public static final ScanFeedbackConfig.FeedbackAnimationStyle Blink
-
Resize
public static final ScanFeedbackConfig.FeedbackAnimationStyle Resize
-
Pulse
public static final ScanFeedbackConfig.FeedbackAnimationStyle Pulse
-
PulseRandom
public static final ScanFeedbackConfig.FeedbackAnimationStyle PulseRandom
-
None
public static final ScanFeedbackConfig.FeedbackAnimationStyle None
-
-
Method Detail
-
values
public static ScanFeedbackConfig.FeedbackAnimationStyle[] 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 (ScanFeedbackConfig.FeedbackAnimationStyle c : ScanFeedbackConfig.FeedbackAnimationStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ScanFeedbackConfig.FeedbackAnimationStyle 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
-
-