public enum CarrierPhase extends Enum<CarrierPhase>
DataStreamRecord
中为载波相位进行枚举。
Modifier and Type | Method and Description |
---|---|
static CarrierPhase |
getCarrierPhase(String code)
获取与代码对应的载波相位。
|
static CarrierPhase |
valueOf(String name)
返回具有指定名称的枚举常量。
|
static CarrierPhase[] |
values()
返回包含此枚举类型的常量的数组,按它们声明的顺序排列。
|
public static final CarrierPhase NO
public static final CarrierPhase L1
public static final CarrierPhase L1_L2
public static CarrierPhase[] values()
for (CarrierPhase c : CarrierPhase.values()) System.out.println(c);
public static CarrierPhase valueOf(String name)
name
- 要返回的枚举常量的名称。
IllegalArgumentException
- 如果此枚举类型没有具有指定名称的常量
NullPointerException
- 如果参数为null
public static CarrierPhase getCarrierPhase(String code)
code
- 载波相位代码
Copyright © 2002-2023 CS GROUP. All rights reserved.