-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum ArrowPositionRules extends Enum<ArrowPositionRules>
ArrowPositionRules determines the position of the arrow depending on the aligning rules.
ArrowPositionRules.ALIGN_BALLOON: Align the arrow position depending on the balloon popup body. ArrowPositionRules.ALIGN_ANCHOR: Align the arrow position depending on an anchor.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALIGN_BALLOONAlign the arrow position depending on the balloon popup body.
If Balloon.Builder.arrowPosition is 0.5, the arrow will be located in the middle of the tooltip.
ALIGN_ANCHORAlign the arrow position depending on an anchor.
If Balloon.Builder.arrowPosition is 0.5, the arrow will be located in the middle of an anchor.
-
Method Summary
Modifier and Type Method Description final ArrowPositionRulesvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<ArrowPositionRules>values()Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final ArrowPositionRules valueOf(String value)
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.)
-
values
final Array<ArrowPositionRules> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
-
-
-