Record Class Canandmag.Status
java.lang.Object
java.lang.Record
com.reduxrobotics.sensors.canandmag.Canandmag.Status
- Record Components:
activeFaults
- the active faults of the encoder.stickyFaults
- the sticky faults of the encoder.temperature
- the temperature of the encoder's processor, in deg Celsius.magnetInRange
- whether the encoder's magnet is in range
- All Implemented Interfaces:
StructSerializable
,WPISerializable
- Enclosing class:
- Canandmag
public static record Canandmag.Status(Canandmag.Faults activeFaults, Canandmag.Faults stickyFaults, double temperature, boolean magnetInRange)
extends Record
implements StructSerializable
Container record class representing a
Canandmag
's status.-
Field Summary
Modifier and TypeFieldDescriptionstatic final CanandmagStatusStruct
This field is necessary for WPILib structs to work around Java type erasure. -
Constructor Summary
ConstructorDescriptionStatus
(Canandmag.Faults activeFaults, Canandmag.Faults stickyFaults, double temperature, boolean magnetInRange) Creates an instance of aStatus
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theactiveFaults
record component.final boolean
Indicates whether some other object is "equal to" this one.static Canandmag.Status
fromByteArray
(byte[] v) Deserializes a Status object from a byte array.final int
hashCode()
Returns a hash code value for this object.static Canandmag.Status
invalid()
Return an invalid Status.boolean
Returns the value of themagnetInRange
record component.Returns the value of thestickyFaults
record component.double
Returns the value of thetemperature
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
struct
This field is necessary for WPILib structs to work around Java type erasure.
-
-
Constructor Details
-
Status
public Status(Canandmag.Faults activeFaults, Canandmag.Faults stickyFaults, double temperature, boolean magnetInRange) Creates an instance of aStatus
record class.- Parameters:
activeFaults
- the value for theactiveFaults
record componentstickyFaults
- the value for thestickyFaults
record componenttemperature
- the value for thetemperature
record componentmagnetInRange
- the value for themagnetInRange
record component
-
-
Method Details
-
invalid
Return an invalid Status.- Returns:
- an invalid/default status
-
fromByteArray
Deserializes a Status object from a byte array.- Parameters:
v
- byte array to deserialize from- Returns:
- new Status
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
activeFaults
Returns the value of theactiveFaults
record component.- Returns:
- the value of the
activeFaults
record component
-
stickyFaults
Returns the value of thestickyFaults
record component.- Returns:
- the value of the
stickyFaults
record component
-
temperature
public double temperature()Returns the value of thetemperature
record component.- Returns:
- the value of the
temperature
record component
-
magnetInRange
public boolean magnetInRange()Returns the value of themagnetInRange
record component.- Returns:
- the value of the
magnetInRange
record component
-