Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

Copyright © 2006 Sun Microsystems, Inc. All rights reserved.

JSR-209 (Final Approval Ballot)

Uses of Class
java.nio.ByteOrder

Packages that use ByteOrder
java.nio This package provides a typesafe enumeration for byte-order; either big-endian or little-endian. 
javax.imageio.stream A package of the Java Image I/O API dealing with low-level I/O from files and streams. 
 

Uses of ByteOrder in java.nio
 

Fields in java.nio declared as ByteOrder
static ByteOrder ByteOrder.BIG_ENDIAN
          Constant denoting big-endian byte order.
static ByteOrder ByteOrder.LITTLE_ENDIAN
          Constant denoting little-endian byte order.
 

Methods in java.nio that return ByteOrder
static ByteOrder ByteOrder.nativeOrder()
          Retrieves the native byte order of the underlying platform.
 

Uses of ByteOrder in javax.imageio.stream
 

Fields in javax.imageio.stream declared as ByteOrder
protected  ByteOrder ImageInputStreamImpl.byteOrder
          The byte order of the stream as an instance of the enumeration class java.nio.ByteOrder, where ByteOrder.BIG_ENDIAN indicates network byte order and ByteOrder.LITTLE_ENDIAN indicates the reverse order.
 

Methods in javax.imageio.stream that return ByteOrder
 ByteOrder ImageInputStream.getByteOrder()
          Returns the byte order with which data values will be read from this stream as an instance of the java.nio.ByteOrder enumeration.
 ByteOrder ImageInputStreamImpl.getByteOrder()
           
 

Methods in javax.imageio.stream with parameters of type ByteOrder
 void ImageInputStream.setByteOrder(ByteOrder byteOrder)
          Sets the desired byte order for future reads of data values from this stream.
 void ImageInputStreamImpl.setByteOrder(ByteOrder byteOrder)
           
 


JSR-209 (Final Approval Ballot)

Copyright © 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

For more information, please consult the JSR 209 specification.