Enum ServiceAreaPolygonCutoffGeometry

    • 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​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null