Enum Class CutPlaneVisitor.PathSearchStrategy

java.lang.Object
java.lang.Enum<CutPlaneVisitor.PathSearchStrategy>
org.noise_planet.noisemodelling.pathfinder.CutPlaneVisitor.PathSearchStrategy
All Implemented Interfaces:
Serializable, Comparable<CutPlaneVisitor.PathSearchStrategy>, java.lang.constant.Constable
Enclosing interface:
CutPlaneVisitor

public static enum CutPlaneVisitor.PathSearchStrategy extends Enum<CutPlaneVisitor.PathSearchStrategy>
  • Enum Constant Details

    • CONTINUE

      public static final CutPlaneVisitor.PathSearchStrategy CONTINUE
      Continue looking for vertical cut planes
    • SKIP_SOURCE

      public static final CutPlaneVisitor.PathSearchStrategy SKIP_SOURCE
      Skip remaining potential vertical planes for this source point
    • PROCESS_SOURCE_BUT_SKIP_RECEIVER

      public static final CutPlaneVisitor.PathSearchStrategy PROCESS_SOURCE_BUT_SKIP_RECEIVER
      Process remaining potential vertical planes for this source but ignore the farthest sources, then proceed to the next receivers
    • SKIP_RECEIVER

      public static final CutPlaneVisitor.PathSearchStrategy SKIP_RECEIVER
      Skip remaining potential vertical planes for this source point and ignore then remaining farthest sources, proceed directly to the next receiver
  • Method Details

    • values

      public static CutPlaneVisitor.PathSearchStrategy[] 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 CutPlaneVisitor.PathSearchStrategy 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