Enum CutPlaneVisitor.PathSearchStrategy
- java.lang.Object
-
- java.lang.Enum<CutPlaneVisitor.PathSearchStrategy>
-
- org.noise_planet.noisemodelling.pathfinder.CutPlaneVisitor.PathSearchStrategy
-
- All Implemented Interfaces:
Serializable
,Comparable<CutPlaneVisitor.PathSearchStrategy>
- Enclosing interface:
- CutPlaneVisitor
public static enum CutPlaneVisitor.PathSearchStrategy extends Enum<CutPlaneVisitor.PathSearchStrategy>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTINUE
Continue looking for vertical cut planesPROCESS_SOURCE_BUT_SKIP_RECEIVER
Process remaining potential vertical planes for this source but ignore the farthest sources, then proceed to the next receiversSKIP_RECEIVER
Skip remaining potential vertical planes for this source point and ignore then remaining farthest sources, proceed directly to the next receiverSKIP_SOURCE
Skip remaining potential vertical planes for this source point
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CutPlaneVisitor.PathSearchStrategy
valueOf(String name)
Returns the enum constant of this type with the specified name.static CutPlaneVisitor.PathSearchStrategy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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 Detail
-
values
public static CutPlaneVisitor.PathSearchStrategy[] 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 (CutPlaneVisitor.PathSearchStrategy c : CutPlaneVisitor.PathSearchStrategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CutPlaneVisitor.PathSearchStrategy 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 nameNullPointerException
- if the argument is null
-
-