Enum CutProfile.PROFILE_TYPE
- java.lang.Object
-
- java.lang.Enum<CutProfile.PROFILE_TYPE>
-
- org.noise_planet.noisemodelling.pathfinder.profilebuilder.CutProfile.PROFILE_TYPE
-
- All Implemented Interfaces:
Serializable,Comparable<CutProfile.PROFILE_TYPE>
- Enclosing class:
- CutProfile
public static enum CutProfile.PROFILE_TYPE extends Enum<CutProfile.PROFILE_TYPE>
Profile type from source to receiver Left and Right are a path using the convex hull on the intersection plane with buildings
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DIRECTLEFTREFLECTIONRIGHT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CutProfile.PROFILE_TYPEvalueOf(String name)Returns the enum constant of this type with the specified name.static CutProfile.PROFILE_TYPE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DIRECT
public static final CutProfile.PROFILE_TYPE DIRECT
-
LEFT
public static final CutProfile.PROFILE_TYPE LEFT
-
RIGHT
public static final CutProfile.PROFILE_TYPE RIGHT
-
REFLECTION
public static final CutProfile.PROFILE_TYPE REFLECTION
-
-
Method Detail
-
values
public static CutProfile.PROFILE_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 (CutProfile.PROFILE_TYPE c : CutProfile.PROFILE_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 CutProfile.PROFILE_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
-
-