public enum TiremPropagationMode extends Enum<TiremPropagationMode> implements Enumeration
| Enum Constant and Description | 
|---|
DIFFRACTION
The Diffraction propagation mode. 
 | 
LINE_OF_SIGHT
The Line of Sight propagation mode. 
 | 
TROPOSPHERIC_SCATTER
The Tropospheric Scatter propagation mode. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static TiremPropagationMode | 
getDefault()
Get the enum constant that is considered to be the default. 
 | 
static TiremPropagationMode | 
getFromValue(int value)
Get the enum constant that is associated with the given numeric value. 
 | 
int | 
getValue()
Get the numeric value associated with this enum constant. 
 | 
static TiremPropagationMode | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static TiremPropagationMode[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final TiremPropagationMode LINE_OF_SIGHT
public static final TiremPropagationMode DIFFRACTION
public static final TiremPropagationMode TROPOSPHERIC_SCATTER
public static TiremPropagationMode[] values()
for (TiremPropagationMode c : TiremPropagationMode.values()) System.out.println(c);
public static TiremPropagationMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getValue()
getValue in interface Enumeration@Nonnull public static TiremPropagationMode getFromValue(int value)
value - a numeric value.@Nonnull public static TiremPropagationMode getDefault()