Package jmri
Class DccLocoAddress
- java.lang.Object
-
- jmri.DccLocoAddress
-
- All Implemented Interfaces:
LocoAddress
- Direct Known Subclasses:
OpenLcbLocoAddress
@Immutable public class DccLocoAddress extends java.lang.Object implements LocoAddress
Encapsulate information for a DCC Locomotive Decoder Address. In particular, this handles the "short" (standard) vs "extended" (long) address selection. An address must be one of these, hence short vs long is encoded as a boolean. Once created, the number and long/short status cannot be changed.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface jmri.LocoAddress
LocoAddress.Protocol
-
-
Field Summary
Fields Modifier and Type Field Description protected long
number
protected LocoAddress.Protocol
protocol
-
Constructor Summary
Constructors Constructor Description DccLocoAddress(int number, boolean isLong)
DccLocoAddress(int number, LocoAddress.Protocol protocol)
DccLocoAddress(DccLocoAddress l)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object a)
int
getNumber()
LocoAddress.Protocol
getProtocol()
int
hashCode()
boolean
isLongAddress()
java.lang.String
toString()
-
-
-
Field Detail
-
number
protected final long number
-
protocol
protected final LocoAddress.Protocol protocol
-
-
Constructor Detail
-
DccLocoAddress
public DccLocoAddress(int number, boolean isLong)
-
DccLocoAddress
public DccLocoAddress(int number, LocoAddress.Protocol protocol)
-
DccLocoAddress
public DccLocoAddress(DccLocoAddress l)
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object a)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
isLongAddress
public boolean isLongAddress()
-
getProtocol
public LocoAddress.Protocol getProtocol()
- Specified by:
getProtocol
in interfaceLocoAddress
-
getNumber
public int getNumber()
- Specified by:
getNumber
in interfaceLocoAddress
-
-