Enum Class VuzixBubbleDelegate.Alignment
java.lang.Object
java.lang.Enum<VuzixBubbleDelegate.Alignment>
com.vuzix.sdk.speechrecognitionservice.VuzixBubbleDelegate.Alignment
- All Implemented Interfaces:
Serializable
,Comparable<VuzixBubbleDelegate.Alignment>
,Constable
- Enclosing class:
- VuzixBubbleDelegate
Defines alignment positions for the on-screen help bubble
- Since:
- SDK version 1.96
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAlign to the bottom and horizontal center of the attached viewAlign to the bottom and end of the attached viewAlign to the bottom and start of the attached viewAlign to the vertical center and horizontal center of the attached viewAlign to the vertical center and end of the attached viewAlign to the vertical center and start of the attached viewAlign using raw x/y coordinatesAlign to the top and horizontal center of the attached viewAlign to the top and end of the attached viewAlign to the top and start of the attached view -
Method Summary
Modifier and TypeMethodDescriptionint
getValue()
Get the corresponding integer representation of the enumReturns the enum constant of this class with the specified name.static VuzixBubbleDelegate.Alignment[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALIGN_TOP_START
Align to the top and start of the attached view -
ALIGN_TOP_CENTER
Align to the top and horizontal center of the attached view -
ALIGN_TOP_END
Align to the top and end of the attached view -
ALIGN_CENTER_START
Align to the vertical center and start of the attached view -
ALIGN_CENTER_CENTER
Align to the vertical center and horizontal center of the attached view -
ALIGN_CENTER_END
Align to the vertical center and end of the attached view -
ALIGN_BOTTOM_START
Align to the bottom and start of the attached view -
ALIGN_BOTTOM_CENTER
Align to the bottom and horizontal center of the attached view -
ALIGN_BOTTOM_END
Align to the bottom and end of the attached view -
ALIGN_RAW
Align using raw x/y coordinates
-
-
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
-
getValue
public int getValue()Get the corresponding integer representation of the enum- Returns:
- int corresponding integer representation of the enum
- Since:
- SDK version 1.96
-