Enum ProfileBuilder.IntersectionType
- java.lang.Object
-
- java.lang.Enum<ProfileBuilder.IntersectionType>
-
- org.noise_planet.noisemodelling.pathfinder.profilebuilder.ProfileBuilder.IntersectionType
-
- All Implemented Interfaces:
Serializable,Comparable<ProfileBuilder.IntersectionType>
- Enclosing class:
- ProfileBuilder
public static enum ProfileBuilder.IntersectionType extends Enum<ProfileBuilder.IntersectionType>
Different type of intersection.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUILDINGGROUND_EFFECTRECEIVERREFLECTIONSOURCETOPOGRAPHYV_EDGE_DIFFRACTIONWALL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProfileBuilder.IntersectionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ProfileBuilder.IntersectionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BUILDING
public static final ProfileBuilder.IntersectionType BUILDING
-
WALL
public static final ProfileBuilder.IntersectionType WALL
-
TOPOGRAPHY
public static final ProfileBuilder.IntersectionType TOPOGRAPHY
-
GROUND_EFFECT
public static final ProfileBuilder.IntersectionType GROUND_EFFECT
-
SOURCE
public static final ProfileBuilder.IntersectionType SOURCE
-
RECEIVER
public static final ProfileBuilder.IntersectionType RECEIVER
-
REFLECTION
public static final ProfileBuilder.IntersectionType REFLECTION
-
V_EDGE_DIFFRACTION
public static final ProfileBuilder.IntersectionType V_EDGE_DIFFRACTION
-
-
Method Detail
-
values
public static ProfileBuilder.IntersectionType[] 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 (ProfileBuilder.IntersectionType c : ProfileBuilder.IntersectionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProfileBuilder.IntersectionType 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
-
-