Enum Class PointOrientation

java.lang.Object
java.lang.Enum<PointOrientation>
com.here.platform.location.referencing.javadsl.PointOrientation
All Implemented Interfaces:
Serializable, Comparable<PointOrientation>, Constable

public enum PointOrientation extends Enum<PointOrientation>
The orientation of an event in the road.

The event can be in the direction of the line, against the direction of the line, in both directions, or declared as unknown.

  • Enum Constant Details

  • Method Details

    • values

      public static PointOrientation[] 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 PointOrientation 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
    • toScala

      public com.here.platform.location.referencing.PointOrientation toScala()
    • fromScala

      public static PointOrientation fromScala(com.here.platform.location.referencing.PointOrientation pointOrientation)