Enum P452ver16Clutter
- java.lang.Object
-
- java.lang.Enum<P452ver16Clutter>
-
- org.seamcat.model.plugin.propagation.P452ver16Clutter
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<P452ver16Clutter>
public enum P452ver16Clutter extends java.lang.Enum<P452ver16Clutter>
Created by karl on 25.01.2017. Added "no clutter" to allow simulating clutter only at one end (Tx or Rx), 15.01.2019, Ivica Stevanovic (OFCOM CH)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DENSE_SUBURBAN
DENSE_URBAN
HIGH_RISE_URBAN
INDUSTRIAL
NONE
SUBURBAN
URBAN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getDistance()
double
getHeight()
java.lang.String
getName()
java.lang.String
toString()
static P452ver16Clutter
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static P452ver16Clutter[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final P452ver16Clutter NONE
-
SUBURBAN
public static final P452ver16Clutter SUBURBAN
-
DENSE_SUBURBAN
public static final P452ver16Clutter DENSE_SUBURBAN
-
URBAN
public static final P452ver16Clutter URBAN
-
DENSE_URBAN
public static final P452ver16Clutter DENSE_URBAN
-
HIGH_RISE_URBAN
public static final P452ver16Clutter HIGH_RISE_URBAN
-
INDUSTRIAL
public static final P452ver16Clutter INDUSTRIAL
-
-
Method Detail
-
values
public static P452ver16Clutter[] 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 (P452ver16Clutter c : P452ver16Clutter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static P452ver16Clutter valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getName
public java.lang.String getName()
-
getHeight
public double getHeight()
-
getDistance
public double getDistance()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<P452ver16Clutter>
-
-