Package com.vuzix.ultralite
Enum Class UltraliteSDK.ScrollingTextView.ScrollViewCommand
java.lang.Object
java.lang.Enum<UltraliteSDK.ScrollingTextView.ScrollViewCommand>
com.vuzix.ultralite.UltraliteSDK.ScrollingTextView.ScrollViewCommand
- All Implemented Interfaces:
Serializable
,Comparable<UltraliteSDK.ScrollingTextView.ScrollViewCommand>
,Constable
- Enclosing interface:
- UltraliteSDK.ScrollingTextView
public static enum UltraliteSDK.ScrollingTextView.ScrollViewCommand
extends Enum<UltraliteSDK.ScrollingTextView.ScrollViewCommand>
This enumeration lists actions that are valid while an app has control and has selected the
SCROLL layout.
- Since:
- 1.4.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThis clears all buffers from the screen, making all available for re-use.When autoScroll was configured, this pauses the scrolling.When autoScroll was configured, this resumes the scrolling.Scroll the buffers a single position now. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ScrollNow
Scroll the buffers a single position now. This rotates the buffers so the previous top line is removed, and each remaining line is shifted up one position. The bottom line is empty and available for re-use.- Since:
- 1.4.0
-
PauseAutoScroll
When autoScroll was configured, this pauses the scrolling.- Since:
- 1.4.0
-
ResumeAutoScroll
When autoScroll was configured, this resumes the scrolling.- Since:
- 1.4.0
-
ClearAll
This clears all buffers from the screen, making all available for re-use.- Since:
- 1.4.0
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-