Enum ServiceAreaPolygonCutoffGeometry

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<ServiceAreaPolygonCutoffGeometry>

    public enum ServiceAreaPolygonCutoffGeometry
    extends java.lang.Enum<ServiceAreaPolygonCutoffGeometry>
    Service area polygon cutoff geometry.

    Specifies the behavior of service area output for a single facility when multiple cutoff values are specified. This parameter does not apply to line output.

    Since:
    100.1.0
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      DISKS
      Disks behaviour.
      RINGS
      Rings behaviour.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static ServiceAreaPolygonCutoffGeometry valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static ServiceAreaPolygonCutoffGeometry[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • RINGS

        public static final ServiceAreaPolygonCutoffGeometry RINGS
        Rings behaviour.

        Each polygon includes only the area between consecutive cutoff values. It does not include the area between the facility and any smaller cutoffs. For instance, If you create 5- and 10-minute service areas, then the 5-minute service area polygon will include the area reachable in 0-5 minutes, and the 10-minute service area polygon will include the area reachable between 5 and 10 minutes.

        Since:
        100.1.0
      • DISKS

        public static final ServiceAreaPolygonCutoffGeometry DISKS
        Disks behaviour.

        Each polygon includes the area reachable from the facility up to the cutoff value, including the area reachable within smaller cutoff values. For instance, If you create 5- and 10-minute service areas, then the 10-minute service area polygon will include the area under the 5-minute service area polygon.

        Since:
        100.1.0
    • Method Detail

      • values

        public static ServiceAreaPolygonCutoffGeometry[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ServiceAreaPolygonCutoffGeometry c : ServiceAreaPolygonCutoffGeometry.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ServiceAreaPolygonCutoffGeometry valueOf​(java.lang.String name)
        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.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null