Enum CutPointWall.INTERSECTION_TYPE
- java.lang.Object
-
- java.lang.Enum<CutPointWall.INTERSECTION_TYPE>
-
- org.noise_planet.noisemodelling.pathfinder.profilebuilder.CutPointWall.INTERSECTION_TYPE
-
- All Implemented Interfaces:
Serializable,Comparable<CutPointWall.INTERSECTION_TYPE>
- Enclosing class:
- CutPointWall
public static enum CutPointWall.INTERSECTION_TYPE extends Enum<CutPointWall.INTERSECTION_TYPE>
This point encounter this kind of limit - We can enter or exit a polygon - pass a line (a wall without width)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUILDING_ENTERBUILDING_EXITTHIN_WALL_ENTER_EXIT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CutPointWall.INTERSECTION_TYPEvalueOf(String name)Returns the enum constant of this type with the specified name.static CutPointWall.INTERSECTION_TYPE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BUILDING_ENTER
public static final CutPointWall.INTERSECTION_TYPE BUILDING_ENTER
-
BUILDING_EXIT
public static final CutPointWall.INTERSECTION_TYPE BUILDING_EXIT
-
THIN_WALL_ENTER_EXIT
public static final CutPointWall.INTERSECTION_TYPE THIN_WALL_ENTER_EXIT
-
-
Method Detail
-
values
public static CutPointWall.INTERSECTION_TYPE[] 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 (CutPointWall.INTERSECTION_TYPE c : CutPointWall.INTERSECTION_TYPE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CutPointWall.INTERSECTION_TYPE 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
-
-