Package swervelib.telemetry
Enum Class SwerveDriveTelemetry.TelemetryVerbosity
java.lang.Object
java.lang.Enum<SwerveDriveTelemetry.TelemetryVerbosity>
swervelib.telemetry.SwerveDriveTelemetry.TelemetryVerbosity
- All Implemented Interfaces:
Serializable
,Comparable<SwerveDriveTelemetry.TelemetryVerbosity>
,Constable
- Enclosing class:
- SwerveDriveTelemetry
public static enum SwerveDriveTelemetry.TelemetryVerbosity
extends Enum<SwerveDriveTelemetry.TelemetryVerbosity>
Verbosity of telemetry data sent back.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionFull swerve drive data is sent back in both human and machine readable forms.Medium telemetry data, swerve directoryLow telemetry data, only post the robot position on the field.Only send the machine readable data related to swerve drive.No telemetry data is sent back.Info level + field info -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
No telemetry data is sent back. -
LOW
Low telemetry data, only post the robot position on the field. -
INFO
Medium telemetry data, swerve directory -
POSE
Info level + field info -
HIGH
Full swerve drive data is sent back in both human and machine readable forms. -
MACHINE
Only send the machine readable data related to swerve drive.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-