public enum SwerlingTargetModel extends Enum<SwerlingTargetModel> implements Enumeration
Enum Constant and Description |
---|
I
Describes a target whose radar cross section is constant throughout a single scan.
|
II
Describes a target whose radar cross section values returned are independent from pulse to pulse, instead of scan to scan.
|
III
Describes a target whose radar cross section varies according to a Chi-squared probability density function with four degrees of freedom.
|
IV
Describes a target whose radar cross section varies according to a Chi-squared probability density function with four degrees of freedom.
|
NONE
Used to indicate that no Swerling model for the radar cross section should be used.
|
Modifier and Type | Method and Description |
---|---|
static SwerlingTargetModel |
getDefault()
Get the enum constant that is considered to be the default.
|
static SwerlingTargetModel |
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 SwerlingTargetModel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SwerlingTargetModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SwerlingTargetModel NONE
public static final SwerlingTargetModel I
public static final SwerlingTargetModel II
public static final SwerlingTargetModel III
public static final SwerlingTargetModel IV
public static SwerlingTargetModel[] values()
for (SwerlingTargetModel c : SwerlingTargetModel.values()) System.out.println(c);
public static SwerlingTargetModel 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 SwerlingTargetModel getFromValue(int value)
value
- a numeric value.@Nonnull public static SwerlingTargetModel getDefault()