Uses of Interface
com.j256.simplemagic.endian.EndianConverter

Packages that use EndianConverter
com.j256.simplemagic.endian Endian classes which convert binary data from different machine formats. 
com.j256.simplemagic.types Various types which do the pattern matching. 
 

Uses of EndianConverter in com.j256.simplemagic.endian
 

Classes in com.j256.simplemagic.endian that implement EndianConverter
 class BigEndianConverter
          Converts values in "big" endian-ness where the high-order bytes come before the low-order (ABCD).
 class LittleEndianConverter
          Converts values in "little" endian-ness where the high-order bytes come _after_ the low-order (DCBA).
 class MiddleEndianConverter
          A four-byte value in middle-endian (god help us) PDP-11 byte order.
 

Methods in com.j256.simplemagic.endian that return EndianConverter
 EndianConverter EndianType.getConverter()
          Returns the converter associated with this endian-type.
 

Uses of EndianConverter in com.j256.simplemagic.types
 

Fields in com.j256.simplemagic.types declared as EndianConverter
protected  EndianConverter LongType.endianConverter
           
 



This content is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.