Package | Description |
---|---|
javolution.context |
Provides real-time
Context to facilitate
separation of concerns and achieve higher level of performance and
code predictability. |
javolution.io | |
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 | |
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.
|
Modifier and Type | Field and Description |
---|---|
static Configurable<Class<? extends ConcurrentContext>> |
ConcurrentContext.DEFAULT
Holds the default implementation.
|
static Configurable<Class<? extends SecurityContext>> |
SecurityContext.DEFAULT
Holds the default security context implementation (configurable).
|
static Configurable<Class<? extends LogContext>> |
LogContext.DEFAULT
Holds the logging context default implementation (configurable,
default value
LogContext.STANDARD ). |
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 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).
|
Modifier and Type | Method and Description |
---|---|
boolean |
SecurityContext.isConfigurable(Configurable cfg)
Indicates if this security context allows changes in the specified
Configurable
(default true ). |
Modifier and Type | Field and Description |
---|---|
static Configurable<Integer> |
Struct.MAXIMUM_ALIGNMENT
Configurable holding the maximum wordSize in bytes
(default
4 ). |
Modifier and Type | Field and Description |
---|---|
static Configurable<Class<? extends Reflection>> |
Reflection.CLASS
Holds the default implementation (configurable).
|
Modifier and Type | Method and Description |
---|---|
static Configurable |
Configurable.getInstance(String name)
Returns the configurable instance having the specified name.
|
Modifier and Type | Method and Description |
---|---|
static <T> void |
Configurable.configure(Configurable<T> cfg,
T newValue)
Sets the run-time value of the specified configurable.
|
Modifier and Type | Field and Description |
---|---|
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<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<Integer> |
TimeContext.TEST_DURATION_MS
Holds the minimum duration of each test execution (default 1000 ms).
|
Modifier and Type | Field and Description |
---|---|
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).
|
Modifier and Type | Field and Description |
---|---|
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–2015 Javolution. All rights reserved.