Uses of Class
javolution.lang.Configurable

Packages that use Configurable
javolution.context Provides real-time Context to facilitate separation of concerns and achieve higher level of performance and code predictability. 
javolution.io Provides utility classes for input and output (such as Struct and Union for direct interoperability with C/C++). 
javolution.lang Provides fundamental classes and interfaces; some of which are either missing from the java.lang package or are not available for all platforms (including J2ME CLDC). 
javolution.testing Provides classes and interfaces to facilitate all aspects of testing including unit tests, performance, regression, etc. 
javolution.util Provides high-performance collection classes and miscellaneous utilities; although this package provides very few collection classes, they are substitutes for most of java.util.* classes (for example, java.util.IdentityHashMap would be a FastMap with an identity key comparator). 
javolution.xml.stream Provides StAX-like XML readers/writers which do not require object creation (such as String) and are consequently faster and more time predictable than standard StAX classes. 
 

Uses of Configurable in javolution.context
 

Fields in javolution.context declared as Configurable
static Configurable<Class<? extends AllocatorContext>> AllocatorContext.DEFAULT
          Holds the default allocator context shared by all newly created threads (the default is a HeapContext instance).
static Configurable<Class<? extends ConcurrentContext>> ConcurrentContext.DEFAULT
          Holds the default implementation.
static Configurable<Class<? extends LogContext>> LogContext.DEFAULT
          Holds the logging context default implementation (configurable, default value LogContext.STANDARD).
static Configurable<Class<? extends SecurityContext>> SecurityContext.DEFAULT
          Holds the default security context implementation (configurable).
static Configurable<Class<? extends StackContext>> StackContext.DEFAULT
          Holds the default implementation.
static Configurable<Integer> ConcurrentContext.MAXIMUM_CONCURRENCY
          Holds the maximum number of concurrent executors (see Javolution Configuration for details).
 

Methods in javolution.context with parameters of type Configurable
 boolean SecurityContext.isConfigurable(Configurable cfg)
          Indicates if this security context allows changes in the specified Configurable (default true).
 

Uses of Configurable in javolution.io
 

Fields in javolution.io declared as Configurable
static Configurable<Integer> Struct.MAXIMUM_ALIGNMENT
          Configurable holding the maximum wordSize in bytes (default 4).
 

Uses of Configurable in javolution.lang
 

Fields in javolution.lang declared as Configurable
static Configurable<Class<? extends Reflection>> Reflection.CLASS
          Holds the default implementation (configurable).
 

Methods in javolution.lang that return Configurable
static Configurable Configurable.getInstance(String name)
          Returns the configurable instance having the specified name.
 

Methods in javolution.lang with parameters of type Configurable
static
<T> void
Configurable.configure(Configurable<T> cfg, T newValue)
          Sets the run-time value of the specified configurable.
 

Uses of Configurable in javolution.testing
 

Fields in javolution.testing declared as Configurable
static Configurable<Class<? extends TestContext>> TestContext.DEFAULT
          Holds the test context default implementation (the test report is sent to to System.out and test errors are sent to System.err).
static Configurable<Class<? extends TimeContext>> TimeContext.DEFAULT
          Holds the time context default implementation (by default logs average and minimum execution time to System.out).
static Configurable<Integer> TimeContext.TEST_DURATION_MS
          Holds the minimum duration of each test execution (default 1000 ms).
 

Uses of Configurable in javolution.util
 

Fields in javolution.util declared as Configurable
static Configurable<Integer> Index.INITIAL_FIRST
          Holds the initial first index value (default -1).
static Configurable<Integer> Index.INITIAL_LAST
          Holds the initial last index value (default 31).
static Configurable<Boolean> FastComparator.REHASH_SYSTEM_HASHCODE
          Indicates if the system hash code should be rehashed (see Javolution Configuration for details).
 

Uses of Configurable in javolution.xml.stream
 

Fields in javolution.xml.stream declared as Configurable
static Configurable<Class<? extends XMLOutputFactory>> XMLOutputFactory.CLASS
          Holds the XMLOutputFactory implementation (configurable).
static Configurable<Class<? extends XMLInputFactory>> XMLInputFactory.CLASS
          Holds the XMLInputFactory implementation (configurable).
 



Copyright © 2005-2012 Javolution. All Rights Reserved.