public enum EnumTimeDistributionProtocol extends java.lang.Enum<EnumTimeDistributionProtocol>
| Enum Constant and Description |
|---|
GLOBAL_POSITIONING_SYSTEM
The GLOBA l_ positionin g_ system.
|
IEEE_1588_Precision_Time_Protocol
IEEE 1588 Precision Time Protocol.
|
INTERRANGE_INSTRUMENTATION_GROUP
The INTERRANG e_ instrumentatio n_ group.
|
NETWORK_TIME_PROTOCOL
The NETWOR k_ tim e_ protocol.
|
SIMPLE_NETWORK_TIME_PROTOCOL
The SIMPL e_ networ k_ tim e_ protocol.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumTimeDistributionProtocol |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumTimeDistributionProtocol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumTimeDistributionProtocol NETWORK_TIME_PROTOCOL
public static final EnumTimeDistributionProtocol INTERRANGE_INSTRUMENTATION_GROUP
public static final EnumTimeDistributionProtocol GLOBAL_POSITIONING_SYSTEM
public static final EnumTimeDistributionProtocol SIMPLE_NETWORK_TIME_PROTOCOL
public static final EnumTimeDistributionProtocol IEEE_1588_Precision_Time_Protocol
public static EnumTimeDistributionProtocol[] values()
for (EnumTimeDistributionProtocol c : EnumTimeDistributionProtocol.values()) System.out.println(c);
public static EnumTimeDistributionProtocol valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()