Uses of Interface
chtdecoder.datastructures.CHTCode

Packages that use CHTCode
chtdecoder.datastructures   
 

Uses of CHTCode in chtdecoder.datastructures
 

Classes in chtdecoder.datastructures that implement CHTCode
 class AbstractCHTCode
          An abstract implementation of a CHTCode.
 

Methods in chtdecoder.datastructures that return CHTCode
 CHTCode CHTCodeList.remove(int index)
          Removes a CHTCode from this list at position index.
 CHTCode CHTCodeList.get(int index)
          Gets a CHTCode from this list.
 CHTCode CHTCodeIterator.next()
          Gets the next CHTCode from this iterator.
 CHTCode AbstractCHTCodeList.remove(int index)
          Removes a CHTCode from this list at position index.
 CHTCode AbstractCHTCodeList.get(int index)
          Gets a CHTCode from this list.
static CHTCode AbstractCHTCode.createCHTCode(java.lang.String name, int address, int value, boolean active)
          A factory method for creating CHTCode objects.
static CHTCode AbstractCHTCode.parseCHTCode(byte[] rawdata)
          Parses a 28-byte raw CHT bitstring into a CHTCode.
 

Methods in chtdecoder.datastructures with parameters of type CHTCode
 void CHTCodeList.add(CHTCode code)
          Adds a CHTCode to the end of this list.
 void AbstractCHTCodeList.add(CHTCode code)
          Adds a CHTCode to the end of this list.