Save This Page
Home » jexcelapi_2_6_8 » jxl.biff » [javadoc | source]
jxl.biff
public final class: IntegerHelper [javadoc | source]
java.lang.Object
   jxl.biff.IntegerHelper
Converts excel byte representations into integers
Method from jxl.biff.IntegerHelper Summary:
getFourBytes,   getFourBytes,   getInt,   getInt,   getShort,   getTwoBytes,   getTwoBytes
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from jxl.biff.IntegerHelper Detail:
 public static byte[] getFourBytes(int i) 
    Gets a four byte array from an integer
 public static  void getFourBytes(int i,
    byte[] target,
    int pos) 
    Converts an integer into four bytes, and places it in the array at the specified position
 public static int getInt(byte b1,
    byte b2) 
    Gets an int from two bytes
 public static int getInt(byte b1,
    byte b2,
    byte b3,
    byte b4) 
    Gets an int from four bytes, doing all the necessary swapping
 public static short getShort(byte b1,
    byte b2) 
    Gets an short from two bytes
 public static byte[] getTwoBytes(int i) 
    Gets a two byte array from an integer
 public static  void getTwoBytes(int i,
    byte[] target,
    int pos) 
    Converts an integer into two bytes, and places it in the array at the specified position