jxl.biff
Class Config

java.lang.Object
  |
  +--jxl.biff.Config

public final class Config
extends java.lang.Object

Class which contains the available system properties which can be enabled/disabled to allow performance enhancements to JExcelApi


Field Summary
static boolean chartsDisabled
          Flag to indicate whether the chart feature is enabled or not Charts deactivated using -Dnocharts=true on the JVM command line Activated by default or by using -Dnocharts=false on the JVM command line
static boolean gcDisabled
          Flag to indicate whether the system hint garbage collection is enabled or not.
static boolean namesDisabled
          Flag to indicate whether the name feature is enabled or not Names deactivated using -Dnonames=true on the JVM command line Activated by default or by using -Dnonames=false on the JVM command line
 
Constructor Summary
Config()
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

chartsDisabled

public static final boolean chartsDisabled
Flag to indicate whether the chart feature is enabled or not Charts deactivated using -Dnocharts=true on the JVM command line Activated by default or by using -Dnocharts=false on the JVM command line

namesDisabled

public static final boolean namesDisabled
Flag to indicate whether the name feature is enabled or not Names deactivated using -Dnonames=true on the JVM command line Activated by default or by using -Dnonames=false on the JVM command line

gcDisabled

public static final boolean gcDisabled
Flag to indicate whether the system hint garbage collection is enabled or not. As a rule of thumb, it is desirable to enable garbage collection when reading large spreadsheets from a batch process or from the command line, but better to deactivate the feature when reading large spreadsheets within a WAS, as the calls to System.gc() not only garbage collect the junk in JExcelApi, but also in the webservers JVM and can cause significant slowdown GC deactivated using -Dnogc=true on the JVM command line Activated by default or by using -Dnogc=false on the JVM command line
Constructor Detail

Config

public Config()