Enum Class OgcAxisOrder

java.lang.Object
java.lang.Enum<OgcAxisOrder>
com.esri.arcgisruntime.ogc.wfs.OgcAxisOrder
All Implemented Interfaces:
Serializable, Comparable<OgcAxisOrder>, Constable

public enum OgcAxisOrder extends Enum<OgcAxisOrder>
Represents the different ways to treat the x/y coordinates order.
Since:
100.5.0
  • Enum Constant Details

    • AUTO

      public static final OgcAxisOrder AUTO
      Indicates swapping the axis order will be based on the OGC standard specification, version, and spatial reference.
    • SWAP

      public static final OgcAxisOrder SWAP
      Indicates the order of x/y coordinates will be swapped.
    • NO_SWAP

      public static final OgcAxisOrder NO_SWAP
      Indicates the order of x/y coordinates will stay as is, and all swapping rules by the OGC standards will be ignored.
  • Method Details

    • values

      public static OgcAxisOrder[] 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 OgcAxisOrder 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