Package org.apache.poi.ss.util
Class RefUtil
- java.lang.Object
-
- org.apache.poi.ss.util.RefUtil
-
public class RefUtil extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static long
PEAK_RESIDENT_BYTES
-
Constructor Summary
Constructors Constructor Description RefUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static String
decodeRef(long refHash)
static long
encodeRef(String ref)
static long
getColIndex(long refHash)
static long
getRowIndex(long refHash)
static boolean
hasColRef(long refHash)
static boolean
hasRowRef(long refHash)
static boolean
isAbsCol(long refHash)
static boolean
isAbsRow(long refHash)
static long
toColHash(long col, boolean var1)
static long
toRefHash(long row, boolean relativeRow, long col, boolean relativeCol)
static long
toRowHash(long result, boolean var1)
-
-
-
Field Detail
-
PEAK_RESIDENT_BYTES
public static final long PEAK_RESIDENT_BYTES
- See Also:
- Constant Field Values
-
-
Method Detail
-
isAbsCol
public static boolean isAbsCol(long refHash)
-
hasColRef
public static boolean hasColRef(long refHash)
-
isAbsRow
public static boolean isAbsRow(long refHash)
-
hasRowRef
public static boolean hasRowRef(long refHash)
-
getColIndex
public static long getColIndex(long refHash)
-
getRowIndex
public static long getRowIndex(long refHash)
-
toColHash
public static long toColHash(long col, boolean var1)
-
toRowHash
public static long toRowHash(long result, boolean var1)
-
toRefHash
public static long toRefHash(long row, boolean relativeRow, long col, boolean relativeCol)
-
decodeRef
public static String decodeRef(long refHash)
-
encodeRef
public static long encodeRef(String ref)
-
-