Enum Timestamp.TimestampSource
- All Implemented Interfaces:
Serializable
,Comparable<Timestamp.TimestampSource>
,java.lang.constant.Constable
- Enclosing class:
- Timestamp
@Deprecated(forRemoval=true) public static enum Timestamp.TimestampSource extends Enum<Timestamp.TimestampSource>
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description CANivore
Deprecated, for removal: This API element is subject to removal in a future version.Timestamp as reported by the CANivore.Device
Deprecated, for removal: This API element is subject to removal in a future version.This timestamp source is not currently implemented in this version of Phoenix Pro.System
Deprecated, for removal: This API element is subject to removal in a future version.Timestamp as reported by the system. -
Field Summary
Fields Modifier and Type Field Description int
value
Deprecated, for removal: This API element is subject to removal in a future version. -
Method Summary
Modifier and Type Method Description static Timestamp.TimestampSource
valueOf(int value)
Deprecated, for removal: This API element is subject to removal in a future version.Gets TimestampSource from specified valuestatic Timestamp.TimestampSource
valueOf(String name)
Deprecated, for removal: This API element is subject to removal in a future version.Returns the enum constant of this type with the specified name.static Timestamp.TimestampSource[]
values()
Deprecated, for removal: This API element is subject to removal in a future version.Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
System
Deprecated, for removal: This API element is subject to removal in a future version.Timestamp as reported by the system. This timestamp is captured when the system receives the signal value.This timestamp is present on all systems and is guaranteed to be monotonic. However, this timestamp is the least accurate due to processing delays within the system.
-
CANivore
Deprecated, for removal: This API element is subject to removal in a future version.Timestamp as reported by the CANivore. This timestamp is captured when the CANivore receives the signal value.The CANivore is synchronized to the system monotonic clock and benefits from reduced latency over the
System
timestamp.On the native roboRIO CAN bus, this timestamp is equivalent to the
System
timestamp.When used with CANivore, the only inaccuracy in this measurement is latency from CAN bus arbitration.
-
Device
Deprecated, for removal: This API element is subject to removal in a future version.This timestamp source is not currently implemented in this version of Phoenix Pro.Timestamp as reported by the device. This timestamp is captured when the device transmits the signal value. Because it is timestamped in the device, it is the most accurate timestamp source.
This timestamp is synchronized to the CANivore clock, which is itself synchronized to the system monotonic clock. As a result, this timestamp source requires a CANivore.
It can be assumed there is no latency between this timestamp and when the data was taken.
-
-
Field Details
-
value
Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Details
-
values
Deprecated, for removal: This API element is subject to removal in a future version.Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Deprecated, for removal: This API element is subject to removal in a future version.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
valueOf
Deprecated, for removal: This API element is subject to removal in a future version.Gets TimestampSource from specified value- Parameters:
value
- Value of TimestampSouce- Returns:
- TimestampSource of specified value
-