public enum MeasurementType extends Enum<MeasurementType>
Enum Constant and Description |
---|
CARRIER_PHASE
载波相位测量。
|
COMBINED_RANGE_PHASE
组合伪距载波相位测量。
|
DOPPLER
多普勒测量。
|
PSEUDO_RANGE
伪距测量。
|
SIGNAL_STRENGTH
信号强度测量。
|
Modifier and Type | Method and Description |
---|---|
static MeasurementType |
valueOf(String name)
返回具有指定名称的此类型的枚举常量。
|
static MeasurementType[] |
values()
返回一个包含此枚举类型常量的数组,按照它们声明的顺序排列。
|
public static final MeasurementType PSEUDO_RANGE
public static final MeasurementType CARRIER_PHASE
public static final MeasurementType DOPPLER
public static final MeasurementType SIGNAL_STRENGTH
public static final MeasurementType COMBINED_RANGE_PHASE
public static MeasurementType[] values()
for (MeasurementType c : MeasurementType.values()) System.out.println(c);
public static MeasurementType valueOf(String name)
name
- 要返回的枚举常量的名称。
IllegalArgumentException
- 如果此枚举类型没有具有指定名称的常量
NullPointerException
- 如果参数为null
Copyright © 2002-2023 CS GROUP. All rights reserved.