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>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionContinue looking for vertical cut planesProcess remaining potential vertical planes for this source but ignore the farthest sources, then proceed to the next receiversSkip remaining potential vertical planes for this source point and ignore then remaining farthest sources, proceed directly to the next receiverSkip remaining potential vertical planes for this source point -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static CutPlaneVisitor.PathSearchStrategy[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONTINUE
Continue looking for vertical cut planes -
SKIP_SOURCE
Skip remaining potential vertical planes for this source point -
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
Skip remaining potential vertical planes for this source point and ignore then remaining farthest sources, proceed directly to the next receiver
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-