public enum CarrierPhase extends Enum<CarrierPhase>
DataStreamRecord.| Enum Constant and Description |
|---|
L1
Yes, L1.
|
L1_L2
Yes, L1&L2.
|
NO
No.
|
| Modifier and Type | Method and Description |
|---|---|
static CarrierPhase |
getCarrierPhase(String code)
Get the carrier phase corresponding to a code.
|
static CarrierPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CarrierPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
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 - 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 static CarrierPhase getCarrierPhase(String code)
code - carrier phase codeCopyright © 2002-2021 CS GROUP. All rights reserved.