Enum Class SceneDatabaseInputSettings.INPUT_MODE
java.lang.Object
java.lang.Enum<SceneDatabaseInputSettings.INPUT_MODE>
org.noise_planet.noisemodelling.jdbc.input.SceneDatabaseInputSettings.INPUT_MODE
- All Implemented Interfaces:
Serializable,Comparable<SceneDatabaseInputSettings.INPUT_MODE>,java.lang.constant.Constable
- Enclosing class:
SceneDatabaseInputSettings
public static enum SceneDatabaseInputSettings.INPUT_MODE
extends Enum<SceneDatabaseInputSettings.INPUT_MODE>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCompute only attenuationGuess input mode at NoiseMapByReceiverMaker.TableLoader#initialize stepRead source emission noise level from source emission table for each periodRead source emission noise level limited to DEN periods from source geometry tableRead traffic from emission source table for each periodRead traffic from geometry source table -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INPUT_MODE_GUESS
Guess input mode at NoiseMapByReceiverMaker.TableLoader#initialize step -
INPUT_MODE_TRAFFIC_FLOW_DEN
Read traffic from geometry source table -
INPUT_MODE_LW_DEN
Read source emission noise level limited to DEN periods from source geometry table -
INPUT_MODE_TRAFFIC_FLOW
Read traffic from emission source table for each period -
INPUT_MODE_LW
Read source emission noise level from source emission table for each period -
INPUT_MODE_ATTENUATION
Compute only attenuation
-
-
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
-