Record Class DigoutPinConfig.RawConfigValue
java.lang.Object
java.lang.Record
com.reduxrobotics.sensors.canandcolor.DigoutPinConfig.RawConfigValue
- Record Components:
stgData
- raw setting data.
- All Implemented Interfaces:
DigoutPinConfig
- Enclosing interface:
- DigoutPinConfig
public static record DigoutPinConfig.RawConfigValue(long stgData)
extends Record
implements DigoutPinConfig
Represents a raw config value.
Users should not need to instantiate this class.
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.reduxrobotics.sensors.canandcolor.DigoutPinConfig
DigoutPinConfig.RawConfigValue
-
Field Summary
Fields inherited from interface com.reduxrobotics.sensors.canandcolor.DigoutPinConfig
kDigoutLogicActiveHigh, kDigoutLogicActiveLow, kDisabled
-
Constructor Summary
ConstructorDescriptionRawConfigValue
(long stgData) Creates an instance of aRawConfigValue
record class. -
Method Summary
Modifier and TypeMethodDescriptionboolean
equals
(DigoutPinConfig other) Returns if two configurations are equivalent.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.long
stgData()
Returns the value of thestgData
record component.long
Serializes the digout config into a value writeable to device settings.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
RawConfigValue
public RawConfigValue(long stgData) Creates an instance of aRawConfigValue
record class.- Parameters:
stgData
- the value for thestgData
record component
-
-
Method Details
-
toOutputSettingData
public long toOutputSettingData()Description copied from interface:DigoutPinConfig
Serializes the digout config into a value writeable to device settings.- Specified by:
toOutputSettingData
in interfaceDigoutPinConfig
- Returns:
- 48-bit long
-
equals
Description copied from interface:DigoutPinConfig
Returns if two configurations are equivalent.- Specified by:
equals
in interfaceDigoutPinConfig
- Parameters:
other
- other config- Returns:
- true if equal
-
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. All components in this record class are compared with '=='. -
stgData
public long stgData()Returns the value of thestgData
record component.- Returns:
- the value of the
stgData
record component
-