Enum Class MarkerSymbol.AngleAlignment

java.lang.Object
java.lang.Enum<MarkerSymbol.AngleAlignment>
com.esri.arcgisruntime.symbology.MarkerSymbol.AngleAlignment
All Implemented Interfaces:
Serializable, Comparable<MarkerSymbol.AngleAlignment>, Constable
Enclosing class:
MarkerSymbol

public static enum MarkerSymbol.AngleAlignment extends Enum<MarkerSymbol.AngleAlignment>
Defines whether the rotation of a Symbol is relative to the map or the user's screen.
Since:
100.0.0
See Also:
  • Enum Constant Details

    • MAP

      public static final MarkerSymbol.AngleAlignment MAP
      Symbol rotation is relative to the map and will be affected by the map's rotation.
    • SCREEN

      public static final MarkerSymbol.AngleAlignment SCREEN
      Symbol rotation is relative to the user's screen and will not be affected by the map's rotation.
  • Method Details

    • values

      public static MarkerSymbol.AngleAlignment[] 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

      public static MarkerSymbol.AngleAlignment valueOf(String name)
      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 name
      NullPointerException - if the argument is null