Module com.esri.arcgisruntime
Enum Class Callout.LeaderPosition
- All Implemented Interfaces:
Serializable
,Comparable<Callout.LeaderPosition>
,Constable
- Enclosing class:
Callout
Indicates the side of a callout on which the leader is drawn.
- Since:
- 100.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDynamically positions the leader to keep the callout as much as possible within the bounds of the GeoView.Positions the leader at the bottom center of the callout.Positions the leader at the left center of the callout.Positions the leader at the right center of the callout.Positions the leader at the top center of the callout. -
Method Summary
Modifier and TypeMethodDescriptionstatic Callout.LeaderPosition
Returns the enum constant of this class with the specified name.static Callout.LeaderPosition[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TOP
Positions the leader at the top center of the callout. -
RIGHT
Positions the leader at the right center of the callout. -
BOTTOM
Positions the leader at the bottom center of the callout. -
LEFT
Positions the leader at the left center of the callout. -
ANY
Dynamically positions the leader to keep the callout as much as possible within the bounds of the GeoView.
-
-
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
-