|
|||||||||
| Home >> All >> org >> springframework >> [ core overview ] | PREV NEXT | ||||||||
A
- asNumber(String) - Method in class org.springframework.core.Constants
- Return a constant value cast to a Number.
- asObject(String) - Method in class org.springframework.core.Constants
- Parse the given string (upper or lower case accepted) and return the appropriate value if it's the name of a constant field in the class we're analysing.
- asString(String) - Method in class org.springframework.core.Constants
- Return a constant value as a String.
C
- COMMONS_COLLECTIONS_CLASS_NAME - Static variable in class org.springframework.core.CollectionFactory
- CollectionFactory - class org.springframework.core.CollectionFactory.
- Factory for collections, being aware of JDK 1.4+ extended collections and Commons Collection 3.x's corresponding versions for older JDKs.
- CollectionFactory() - Constructor for class org.springframework.core.CollectionFactory
- CollectionFactory.CommonsCollectionFactory - class org.springframework.core.CollectionFactory.CommonsCollectionFactory.
- Actual creation of Commons Collections.
- CollectionFactory.CommonsCollectionFactory() - Constructor for class org.springframework.core.CollectionFactory.CommonsCollectionFactory
- CollectionFactory.Jdk14CollectionFactory - class org.springframework.core.CollectionFactory.Jdk14CollectionFactory.
- Actual creation of JDK 1.4+ Collections.
- CollectionFactory.Jdk14CollectionFactory() - Constructor for class org.springframework.core.CollectionFactory.Jdk14CollectionFactory
- ConstantException - exception org.springframework.core.ConstantException.
- Exception thrown when the Constants class is asked for an invalid constant name.
- ConstantException(String, String, String) - Constructor for class org.springframework.core.ConstantException
- Thrown when an invalid constant name is requested.
- ConstantException(String, String, Object) - Constructor for class org.springframework.core.ConstantException
- Thrown when an invalid constant value is looked up.
- Constants - class org.springframework.core.Constants.
- This class can be used to parse other classes containing constant definitions in public static final members.
- Constants(Class) - Constructor for class org.springframework.core.Constants
- Create a new Constants converter class wrapping the given class.
- ControlFlow - interface org.springframework.core.ControlFlow.
- Interface to be implemented by objects that can return information about the current call stack.
- ControlFlowFactory - class org.springframework.core.ControlFlowFactory.
- Static factory to conceal automatic choice of Java 1.4 or 1.3 ControlFlow implementation class.
- ControlFlowFactory() - Constructor for class org.springframework.core.ControlFlowFactory
- ControlFlowFactory.Jdk13ControlFlow - class org.springframework.core.ControlFlowFactory.Jdk13ControlFlow.
- Java 1.3 version of utilities for cflow-style pointcuts.
- ControlFlowFactory.Jdk13ControlFlow() - Constructor for class org.springframework.core.ControlFlowFactory.Jdk13ControlFlow
- ControlFlowFactory.Jdk14ControlFlow - class org.springframework.core.ControlFlowFactory.Jdk14ControlFlow.
- Utilities for cflow-style pointcuts.
- ControlFlowFactory.Jdk14ControlFlow() - Constructor for class org.springframework.core.ControlFlowFactory.Jdk14ControlFlow
- cause - Variable in class org.springframework.core.NestedCheckedException
- Root cause of this nested exception
- cause - Variable in class org.springframework.core.NestedRuntimeException
- Root cause of this nested exception
- className - Variable in class org.springframework.core.Constants
- commonsCollections3xAvailable - Static variable in class org.springframework.core.CollectionFactory
- compare(Object, Object) - Method in class org.springframework.core.OrderComparator
- contains(Class) - Method in class org.springframework.core.NestedCheckedException
- Check whether this exception contains an exception of the given class: either it is of the given class itself or it contains a nested cause of the given class.
- contains(Class) - Method in class org.springframework.core.NestedRuntimeException
- Check whether this exception contains an exception of the given class: either it is of the given class itself or it contains a nested cause of the given class.
- createControlFlow() - Static method in class org.springframework.core.ControlFlowFactory
- createIdentityHashMap(int) - Static method in class org.springframework.core.CollectionFactory.Jdk14CollectionFactory
- createIdentityMap(int) - Static method in class org.springframework.core.CollectionFactory.CommonsCollectionFactory
- createIdentityMapIfPossible(int) - Static method in class org.springframework.core.CollectionFactory
- Create an identity map if possible: that is, if running on JDK >= 1.4 or if Commons Collections 3.x is available.
- createLinkedCaseInsensitiveMapIfPossible(int) - Static method in class org.springframework.core.CollectionFactory
- Create a linked case-insensitive map if possible: if Commons Collections 3.x is available, a CaseInsensitiveMap with ListOrderedMap decorator will be created.
- createLinkedHashMap(int) - Static method in class org.springframework.core.CollectionFactory.Jdk14CollectionFactory
- createLinkedHashSet(int) - Static method in class org.springframework.core.CollectionFactory.Jdk14CollectionFactory
- createLinkedMap(int) - Static method in class org.springframework.core.CollectionFactory.CommonsCollectionFactory
- createLinkedMapIfPossible(int) - Static method in class org.springframework.core.CollectionFactory
- Create a linked map if possible: that is, if running on JDK >= 1.4 or if Commons Collections 3.x is available.
- createLinkedSetIfPossible(int) - Static method in class org.springframework.core.CollectionFactory
- Create a linked set if possible: that is, if running on JDK >= 1.4 or if Commons Collections 3.x is available.
- createListOrderedCaseInsensitiveMap(int) - Static method in class org.springframework.core.CollectionFactory.CommonsCollectionFactory
- createListOrderedSet(int) - Static method in class org.springframework.core.CollectionFactory.CommonsCollectionFactory
E
- ErrorCoded - interface org.springframework.core.ErrorCoded.
- Interface that can be implemented by exceptions etc that are error coded.
F
- fieldCache - Variable in class org.springframework.core.Constants
- Map from String field name to object value
G
- getCause() - Method in class org.springframework.core.NestedCheckedException
- Return the nested cause, or null if none.
- getCause() - Method in class org.springframework.core.NestedRuntimeException
- Return the nested cause, or null if none.
- getClassName() - Method in class org.springframework.core.Constants
- Return the name of the analyzed class.
- getErrorCode() - Method in interface org.springframework.core.ErrorCoded
- Return the error code associated with this failure.
- getFieldCache() - Method in class org.springframework.core.Constants
- Exposes the field cache to subclasses: a Map from String field name to object value.
- getJavaVersion() - Static method in class org.springframework.core.JdkVersion
- Return the full Java version string, as returned by
System.getProperty("java.version"). - getMajorJavaVersion() - Static method in class org.springframework.core.JdkVersion
- Get the major version code.
- getMessage() - Method in class org.springframework.core.NestedCheckedException
- Return the detail message, including the message from the nested exception if there is one.
- getMessage() - Method in class org.springframework.core.NestedRuntimeException
- Return the detail message, including the message from the nested exception if there is one.
- getOrder() - Method in interface org.springframework.core.Ordered
- Return the order value of this object, higher value meaning greater in terms of sorting.
- getSize() - Method in class org.springframework.core.Constants
- Return the number of constants exposed.
- getValues(String) - Method in class org.springframework.core.Constants
- Return all values of the given group of constants.
- getValuesForProperty(String) - Method in class org.springframework.core.Constants
- Return all values of the group of constants for the given bean property name.
- getVersion() - Static method in class org.springframework.core.SpringVersion
- Return the full Spring version string.
J
- JAVA_13 - Static variable in class org.springframework.core.JdkVersion
- JAVA_14 - Static variable in class org.springframework.core.JdkVersion
- JAVA_15 - Static variable in class org.springframework.core.JdkVersion
- JdkVersion - class org.springframework.core.JdkVersion.
- Helper class used to find the current Java/JDK version.
- JdkVersion() - Constructor for class org.springframework.core.JdkVersion
- javaVersion - Static variable in class org.springframework.core.JdkVersion
L
- logger - Static variable in class org.springframework.core.CollectionFactory
M
- majorJavaVersion - Static variable in class org.springframework.core.JdkVersion
N
- NestedCheckedException - exception org.springframework.core.NestedCheckedException.
- Handy class for wrapping checked Exceptions with a root cause.
- NestedCheckedException(String) - Constructor for class org.springframework.core.NestedCheckedException
- Construct a
NestedCheckedExceptionwith the specified detail message. - NestedCheckedException(String, Throwable) - Constructor for class org.springframework.core.NestedCheckedException
- Construct a
NestedCheckedExceptionwith the specified detail message and nested exception. - NestedRuntimeException - exception org.springframework.core.NestedRuntimeException.
- Handy class for wrapping runtime Exceptions with a root cause.
- NestedRuntimeException(String) - Constructor for class org.springframework.core.NestedRuntimeException
- Construct a
NestedRuntimeExceptionwith the specified detail message. - NestedRuntimeException(String, Throwable) - Constructor for class org.springframework.core.NestedRuntimeException
- Construct a
NestedRuntimeExceptionwith the specified detail message and nested exception.
O
- OrderComparator - class org.springframework.core.OrderComparator.
- Comparator implementation for Ordered objects, sorting by order value ascending (resp.
- OrderComparator() - Constructor for class org.springframework.core.OrderComparator
- Ordered - interface org.springframework.core.Ordered.
- Interface that can be implemented by objects that should be orderable, e.g.
- org.springframework.core - package org.springframework.core
P
- printStackTrace(PrintStream) - Method in class org.springframework.core.NestedCheckedException
- Print the composite message and the embedded stack trace to the specified stream.
- printStackTrace(PrintWriter) - Method in class org.springframework.core.NestedCheckedException
- Print the composite message and the embedded stack trace to the specified print writer.
- printStackTrace(PrintStream) - Method in class org.springframework.core.NestedRuntimeException
- Print the composite message and the embedded stack trace to the specified stream.
- printStackTrace(PrintWriter) - Method in class org.springframework.core.NestedRuntimeException
- Print the composite message and the embedded stack trace to the specified writer.
- propertyToConstantNamePrefix(String) - Method in class org.springframework.core.Constants
- Convert the given bean property name to a constant name prefix.
S
- SpringVersion - class org.springframework.core.SpringVersion.
- Class that exposes the Spring version.
- SpringVersion() - Constructor for class org.springframework.core.SpringVersion
- stack - Variable in class org.springframework.core.ControlFlowFactory.Jdk14ControlFlow
- stackTrace - Variable in class org.springframework.core.ControlFlowFactory.Jdk13ControlFlow
T
- toCode(Object, String) - Method in class org.springframework.core.Constants
- Look up the given value within the given group of constants.
- toCodeForProperty(Object, String) - Method in class org.springframework.core.Constants
- Look up the given value within the group of constants for the given bean property name.
- toString() - Method in class org.springframework.core.ControlFlowFactory.Jdk14ControlFlow
U
- under(Class) - Method in interface org.springframework.core.ControlFlow
- Detect whether we're under the given class, according to the current stack trace.
- under(Class, String) - Method in interface org.springframework.core.ControlFlow
- Detect whether we're under the given class and method, according to the current stack trace.
- under(Class) - Method in class org.springframework.core.ControlFlowFactory.Jdk13ControlFlow
- under(Class, String) - Method in class org.springframework.core.ControlFlowFactory.Jdk13ControlFlow
- Matches whole method name.
- under(Class) - Method in class org.springframework.core.ControlFlowFactory.Jdk14ControlFlow
- under(Class, String) - Method in class org.springframework.core.ControlFlowFactory.Jdk14ControlFlow
- Matches whole method name.
- underToken(String) - Method in interface org.springframework.core.ControlFlow
- Detect whether the current stack trace contains the given token.
- underToken(String) - Method in class org.springframework.core.ControlFlowFactory.Jdk13ControlFlow
- Leave it up to the caller to decide what matches.
- underToken(String) - Method in class org.springframework.core.ControlFlowFactory.Jdk14ControlFlow
- Leave it up to the caller to decide what matches.
A C E F G J L M N O P S T U
|
|||||||||
| Home >> All >> org >> springframework >> [ core overview ] | PREV NEXT | ||||||||