spring-android-core
A B C D E F G H I J K L M N O P Q R S T U V W

A

AbstractFileResolvingResource - Class in org.springframework.core.io
Abstract base class for resources which resolve URLs into File references, such as UrlResource or ClassPathResource.
AbstractFileResolvingResource() - Constructor for class org.springframework.core.io.AbstractFileResolvingResource
 
AbstractResource - Class in org.springframework.core.io
Convenience base class for Resource implementations, pre-implementing typical behavior.
AbstractResource() - Constructor for class org.springframework.core.io.AbstractResource
 
add(K, V) - Method in class org.springframework.util.LinkedMultiValueMap
 
add(K, V) - Method in interface org.springframework.util.MultiValueMap
Add the given single value to the current list of values for the given key.
addObjectToArray(A[], O) - Static method in class org.springframework.util.ObjectUtils
Append the given object to the given array, returning a new array consisting of the input array contents plus the given object.
addResourcePathToPackagePath(Class<?>, String) - Static method in class org.springframework.util.ClassUtils
Return a path suitable for use with ClassLoader.getResource (also suitable for use with Class.getResource by prepending a slash ('/') to the return value).
addStringToArray(String[], String) - Static method in class org.springframework.util.StringUtils
Append the given String to the given String array, returning a new array consisting of the input array contents plus the given String.
applyRelativePath(String, String) - Static method in class org.springframework.util.StringUtils
Apply the given relative path to the given path, assuming standard Java folder separation (i.e.
ARRAY_SUFFIX - Static variable in class org.springframework.util.ClassUtils
Suffix for array class names: "[]"
arrayToCommaDelimitedString(Object[]) - Static method in class org.springframework.util.StringUtils
Convenience method to return a String array as a CSV String.
arrayToDelimitedString(Object[], String) - Static method in class org.springframework.util.StringUtils
Convenience method to return a String array as a delimited (e.g.
arrayToList(Object) - Static method in class org.springframework.util.CollectionUtils
Convert the supplied array into a List.
Assert - Class in org.springframework.util
Assertion utility class that assists in validating arguments.
Assert() - Constructor for class org.springframework.util.Assert
 
AssetResource - Class in org.springframework.core.io
Resource implementation for Android asset resources.
AssetResource(AssetManager, String) - Constructor for class org.springframework.core.io.AssetResource
Create a new AssetResource.

B

Base64 - Class in org.springframework.util.support
Encodes and decodes to and from Base64 notation.
Base64.InputStream - Class in org.springframework.util.support
A Base64.InputStream will read data from another java.io.InputStream, given in the constructor, and encode/decode to/from Base64 notation on the fly.
Base64.InputStream(InputStream) - Constructor for class org.springframework.util.support.Base64.InputStream
Constructs a Base64.InputStream in DECODE mode.
Base64.InputStream(InputStream, int) - Constructor for class org.springframework.util.support.Base64.InputStream
Constructs a Base64.InputStream in either ENCODE or DECODE mode.
Base64.OutputStream - Class in org.springframework.util.support
A Base64.OutputStream will write data to another java.io.OutputStream, given in the constructor, and encode/decode to/from Base64 notation on the fly.
Base64.OutputStream(OutputStream) - Constructor for class org.springframework.util.support.Base64.OutputStream
Constructs a Base64.OutputStream in ENCODE mode.
Base64.OutputStream(OutputStream, int) - Constructor for class org.springframework.util.support.Base64.OutputStream
Constructs a Base64.OutputStream in either ENCODE or DECODE mode.
Base64Utils - Class in org.springframework.util
Utility class for Base64 encoding.
Base64Utils() - Constructor for class org.springframework.util.Base64Utils
 
BeansException - Exception in org.springframework.beans
Abstract superclass for all exceptions thrown in the beans package and subpackages.
BeansException(String) - Constructor for exception org.springframework.beans.BeansException
Create a new BeansException with the specified message.
BeansException(String, Throwable) - Constructor for exception org.springframework.beans.BeansException
Create a new BeansException with the specified message and root cause.
BUFFER_SIZE - Static variable in class org.springframework.util.FileCopyUtils
 
buildMessage(String, Throwable) - Static method in class org.springframework.core.NestedExceptionUtils
Build a message for the given base message and root cause.
ByteArrayResource - Class in org.springframework.core.io
Resource implementation for a given byte array.
ByteArrayResource(byte[]) - Constructor for class org.springframework.core.io.ByteArrayResource
Create a new ByteArrayResource.
ByteArrayResource(byte[], String) - Constructor for class org.springframework.core.io.ByteArrayResource
Create a new ByteArrayResource.

C

capitalize(String) - Static method in class org.springframework.util.StringUtils
Capitalize a String, changing the first letter to upper case as per Character.toUpperCase(char).
caseInsensitiveValueOf(E[], String) - Static method in class org.springframework.util.ObjectUtils
Case insensitive alternative to Enum.valueOf(Class, String).
CGLIB_CLASS_SEPARATOR - Static variable in class org.springframework.util.ClassUtils
The CGLIB class separator character "$$"
CLASS_FILE_SUFFIX - Static variable in class org.springframework.util.ClassUtils
The ".class" file suffix
classNamesToString(Class...) - Static method in class org.springframework.util.ClassUtils
Build a String that consists of the names of the classes/interfaces in the given array.
classNamesToString(Collection<Class>) - Static method in class org.springframework.util.ClassUtils
Build a String that consists of the names of the classes/interfaces in the given collection.
classPackageAsResourcePath(Class<?>) - Static method in class org.springframework.util.ClassUtils
Given an input class object, return a string which consists of the class's package name as a pathname, i.e., all dots ('.') are replaced by slashes ('/').
CLASSPATH_URL_PREFIX - Static variable in class org.springframework.util.ResourceUtils
Pseudo URL prefix for loading from the class path: "classpath:"
ClassPathResource - Class in org.springframework.core.io
Resource implementation for class path resources.
ClassPathResource(String) - Constructor for class org.springframework.core.io.ClassPathResource
Create a new ClassPathResource for ClassLoader usage.
ClassPathResource(String, ClassLoader) - Constructor for class org.springframework.core.io.ClassPathResource
Create a new ClassPathResource for ClassLoader usage.
ClassPathResource(String, Class<?>) - Constructor for class org.springframework.core.io.ClassPathResource
Create a new ClassPathResource for Class usage.
ClassPathResource(String, ClassLoader, Class<?>) - Constructor for class org.springframework.core.io.ClassPathResource
Create a new ClassPathResource with optional ClassLoader and Class.
ClassUtils - Class in org.springframework.util
Miscellaneous class utility methods.
ClassUtils() - Constructor for class org.springframework.util.ClassUtils
 
cleanPath(String) - Static method in class org.springframework.util.StringUtils
Normalize the path by suppressing sequences like "path/.." and inner simple dots.
clear() - Method in class org.springframework.util.LinkedCaseInsensitiveMap
 
clear() - Method in class org.springframework.util.LinkedMultiValueMap
 
close() - Method in class org.springframework.util.support.Base64.OutputStream
Flushes and closes (I think, in the superclass) the stream.
collectionToCommaDelimitedString(Collection<?>) - Static method in class org.springframework.util.StringUtils
Convenience method to return a Collection as a CSV String.
collectionToDelimitedString(Collection<?>, String, String, String) - Static method in class org.springframework.util.StringUtils
Convenience method to return a Collection as a delimited (e.g.
collectionToDelimitedString(Collection<?>, String) - Static method in class org.springframework.util.StringUtils
Convenience method to return a Collection as a delimited (e.g.
CollectionUtils - Class in org.springframework.util
Miscellaneous collection utility methods.
CollectionUtils() - Constructor for class org.springframework.util.CollectionUtils
 
commaDelimitedListToSet(String) - Static method in class org.springframework.util.StringUtils
Convenience method to convert a CSV string list to a set.
commaDelimitedListToStringArray(String) - Static method in class org.springframework.util.StringUtils
Convert a CSV list into an array of Strings.
concatenateStringArrays(String[], String[]) - Static method in class org.springframework.util.StringUtils
Concatenate the given String arrays into one, with overlapping array elements included twice.
contains(Class<?>) - Method in exception org.springframework.core.NestedCheckedException
Check whether this exception contains an exception of the given type: either it is of the given class itself or it contains a nested cause of the given type.
contains(Class<?>) - Method in exception org.springframework.core.NestedRuntimeException
Check whether this exception contains an exception of the given type: either it is of the given class itself or it contains a nested cause of the given type.
contains(Iterator<?>, Object) - Static method in class org.springframework.util.CollectionUtils
Check whether the given Iterator contains the given element.
contains(Enumeration<?>, Object) - Static method in class org.springframework.util.CollectionUtils
Check whether the given Enumeration contains the given element.
containsAny(Collection<?>, Collection<?>) - Static method in class org.springframework.util.CollectionUtils
Return true if any element in 'candidates' is contained in 'source'; otherwise returns false.
containsConstant(Enum<?>[], String) - Static method in class org.springframework.util.ObjectUtils
Check whether the given array of enum constants contains a constant with the given name, ignoring case when determining a match.
containsConstant(Enum<?>[], String, boolean) - Static method in class org.springframework.util.ObjectUtils
Check whether the given array of enum constants contains a constant with the given name.
containsElement(Object[], Object) - Static method in class org.springframework.util.ObjectUtils
Check whether the given array contains the given element.
containsInstance(Collection<?>, Object) - Static method in class org.springframework.util.CollectionUtils
Check whether the given Collection contains the given element instance.
containsKey(Object) - Method in class org.springframework.util.LinkedCaseInsensitiveMap
 
containsKey(Object) - Method in class org.springframework.util.LinkedMultiValueMap
 
containsValue(Object) - Method in class org.springframework.util.LinkedMultiValueMap
 
containsWhitespace(CharSequence) - Static method in class org.springframework.util.StringUtils
Check whether the given CharSequence contains any whitespace characters.
containsWhitespace(String) - Static method in class org.springframework.util.StringUtils
Check whether the given String contains any whitespace characters.
contentLength() - Method in class org.springframework.core.io.AbstractFileResolvingResource
 
contentLength() - Method in class org.springframework.core.io.AbstractResource
This implementation checks the length of the underlying File, if available.
contentLength() - Method in class org.springframework.core.io.AssetResource
This implementation checks the length of the underlying AssetFileDescriptor, if available.
contentLength() - Method in class org.springframework.core.io.ByteArrayResource
This implementation returns the length of the underlying byte array.
contentLength() - Method in interface org.springframework.core.io.Resource
Determine the content length for this resource.
convertClassNameToResourcePath(String) - Static method in class org.springframework.util.ClassUtils
Convert a "."-based fully qualified class name to a "/"-based resource path.
convertKey(String) - Method in class org.springframework.util.LinkedCaseInsensitiveMap
Convert the given key to a case-insensitive key.
convertNumberToTargetClass(Number, Class<T>) - Static method in class org.springframework.util.NumberUtils
Convert the given number into an instance of the given target class.
convertResourcePathToClassName(String) - Static method in class org.springframework.util.ClassUtils
Convert a "/"-based resource path to a "."-based fully qualified class name.
copy(File, File) - Static method in class org.springframework.util.FileCopyUtils
Copy the contents of the given input File to the given output File.
copy(byte[], File) - Static method in class org.springframework.util.FileCopyUtils
Copy the contents of the given byte array to the given output File.
copy(InputStream, OutputStream) - Static method in class org.springframework.util.FileCopyUtils
Copy the contents of the given InputStream to the given OutputStream.
copy(byte[], OutputStream) - Static method in class org.springframework.util.FileCopyUtils
Copy the contents of the given byte array to the given OutputStream.
copy(Reader, Writer) - Static method in class org.springframework.util.FileCopyUtils
Copy the contents of the given Reader to the given Writer.
copy(String, Writer) - Static method in class org.springframework.util.FileCopyUtils
Copy the contents of the given String to the given output Writer.
COPYABLE_FIELDS - Static variable in class org.springframework.util.ReflectionUtils
Pre-built FieldFilter that matches all non-static, non-final fields.
copyToByteArray(File) - Static method in class org.springframework.util.FileCopyUtils
Copy the contents of the given input File into a new byte array.
copyToByteArray(InputStream) - Static method in class org.springframework.util.FileCopyUtils
Copy the contents of the given InputStream into a new byte array.
copyToString(Reader) - Static method in class org.springframework.util.FileCopyUtils
Copy the contents of the given Reader into a String.
countOccurrencesOf(String, String) - Static method in class org.springframework.util.StringUtils
Count the occurrences of the substring in string s.
createCompositeInterface(Class<?>[], ClassLoader) - Static method in class org.springframework.util.ClassUtils
Create a composite interface Class for the given interfaces, implementing the given interfaces in one single Class.
createRelative(String) - Method in class org.springframework.core.io.AbstractResource
This implementation throws a FileNotFoundException, assuming that relative resources cannot be created for this resource.
createRelative(String) - Method in class org.springframework.core.io.ClassPathResource
This implementation creates a ClassPathResource, applying the given path relative to the path of the underlying resource of this descriptor.
createRelative(String) - Method in class org.springframework.core.io.FileSystemResource
This implementation creates a FileSystemResource, applying the given path relative to the path of the underlying file of this resource descriptor.
createRelative(String) - Method in interface org.springframework.core.io.Resource
Create a resource relative to this resource.
createRelative(String) - Method in class org.springframework.core.io.UrlResource
This implementation creates a UrlResource, applying the given path relative to the path of the underlying URL of this resource descriptor.

D

declaresException(Method, Class<?>) - Static method in class org.springframework.util.ReflectionUtils
Determine whether the given method explicitly declares the given exception or one of its superclasses, which means that an exception of that type can be propagated as-is within a reflective invocation.
decode(byte[]) - Static method in class org.springframework.util.Base64Utils
Base64 decodes the input.
decode(String) - Static method in class org.springframework.util.Base64Utils
Base64 decodes the input.
DECODE - Static variable in class org.springframework.util.support.Base64
Specify decoding in first bit.
decode(byte[]) - Static method in class org.springframework.util.support.Base64
Low-level access to decoding ASCII characters in the form of a byte array.
decode(byte[], int, int, int) - Static method in class org.springframework.util.support.Base64
Low-level access to decoding ASCII characters in the form of a byte array.
decode(String) - Static method in class org.springframework.util.support.Base64
Decodes data from Base64 notation, automatically detecting gzip-compressed data and decompressing it.
decode(String, int) - Static method in class org.springframework.util.support.Base64
Decodes data from Base64 notation, automatically detecting gzip-compressed data and decompressing it.
decodeFileToFile(String, String) - Static method in class org.springframework.util.support.Base64
Reads infile and decodes it to outfile.
decodeFromFile(String) - Static method in class org.springframework.util.support.Base64
Convenience method for reading a base64-encoded file and decoding it.
decodeToFile(String, String) - Static method in class org.springframework.util.support.Base64
Convenience method for decoding data to a file.
decodeToObject(String) - Static method in class org.springframework.util.support.Base64
Attempts to decode Base64 data and deserialize a Java Object within.
decodeToObject(String, int, ClassLoader) - Static method in class org.springframework.util.support.Base64
Attempts to decode Base64 data and deserialize a Java Object within.
decreaseNestingLevel() - Method in class org.springframework.core.MethodParameter
Decrease this parameter's nesting level.
delete(String, String) - Static method in class org.springframework.util.StringUtils
Delete all occurrences of the given substring.
deleteAny(String, String) - Static method in class org.springframework.util.StringUtils
Delete any character in a given String.
delimitedListToStringArray(String, String) - Static method in class org.springframework.util.StringUtils
Take a String which is a delimited list and convert it to a String array.
delimitedListToStringArray(String, String, String) - Static method in class org.springframework.util.StringUtils
Take a String which is a delimited list and convert it to a String array.
destroy() - Method in interface org.springframework.beans.factory.DisposableBean
Invoked by a BeanFactory on destruction of a singleton.
DisposableBean - Interface in org.springframework.beans.factory
Interface to be implemented by beans that want to release resources on destruction.
DO_BREAK_LINES - Static variable in class org.springframework.util.support.Base64
Do break lines when encoding.
doesNotContain(String, String, String) - Static method in class org.springframework.util.Assert
Assert that the given text does not contain the given substring.
doesNotContain(String, String) - Static method in class org.springframework.util.Assert
Assert that the given text does not contain the given substring.
DONT_GUNZIP - Static variable in class org.springframework.util.support.Base64
Specify that gzipped data should not be automatically gunzipped.
doWith(Field) - Method in interface org.springframework.util.ReflectionUtils.FieldCallback
Perform an operation using the given field.
doWith(Method) - Method in interface org.springframework.util.ReflectionUtils.MethodCallback
Perform an operation using the given method.
doWithFields(Class<?>, ReflectionUtils.FieldCallback) - Static method in class org.springframework.util.ReflectionUtils
Invoke the given callback on all fields in the target class, going up the class hierarchy to get all declared fields.
doWithFields(Class<?>, ReflectionUtils.FieldCallback, ReflectionUtils.FieldFilter) - Static method in class org.springframework.util.ReflectionUtils
Invoke the given callback on all fields in the target class, going up the class hierarchy to get all declared fields.
doWithMethods(Class<?>, ReflectionUtils.MethodCallback) - Static method in class org.springframework.util.ReflectionUtils
Perform the given callback operation on all matching methods of the given class and superclasses.
doWithMethods(Class<?>, ReflectionUtils.MethodCallback, ReflectionUtils.MethodFilter) - Static method in class org.springframework.util.ReflectionUtils
Perform the given callback operation on all matching methods of the given class and superclasses (or given interface and super-interfaces).

E

encode(byte[]) - Static method in class org.springframework.util.Base64Utils
Base64 encodes the input.
ENCODE - Static variable in class org.springframework.util.support.Base64
Specify encoding in first bit.
encode(ByteBuffer, ByteBuffer) - Static method in class org.springframework.util.support.Base64
Performs Base64 encoding on the raw ByteBuffer, writing it to the encoded ByteBuffer.
encode(ByteBuffer, CharBuffer) - Static method in class org.springframework.util.support.Base64
Performs Base64 encoding on the raw ByteBuffer, writing it to the encoded CharBuffer.
encodeBytes(byte[]) - Static method in class org.springframework.util.support.Base64
Encodes a byte array into Base64 notation.
encodeBytes(byte[], int) - Static method in class org.springframework.util.support.Base64
Encodes a byte array into Base64 notation.
encodeBytes(byte[], int, int) - Static method in class org.springframework.util.support.Base64
Encodes a byte array into Base64 notation.
encodeBytes(byte[], int, int, int) - Static method in class org.springframework.util.support.Base64
Encodes a byte array into Base64 notation.
encodeBytesToBytes(byte[]) - Static method in class org.springframework.util.support.Base64
Similar to Base64.encodeBytes(byte[]) but returns a byte array instead of instantiating a String.
encodeBytesToBytes(byte[], int, int, int) - Static method in class org.springframework.util.support.Base64
Similar to Base64.encodeBytes(byte[], int, int, int) but returns a byte array instead of instantiating a String.
encodeFileToFile(String, String) - Static method in class org.springframework.util.support.Base64
Reads infile and encodes it to outfile.
encodeFromFile(String) - Static method in class org.springframework.util.support.Base64
Convenience method for reading a binary file and base64-encoding it.
encodeObject(Serializable) - Static method in class org.springframework.util.support.Base64
Serializes an object and returns the Base64-encoded version of that serialized object.
encodeObject(Serializable, int) - Static method in class org.springframework.util.support.Base64
Serializes an object and returns the Base64-encoded version of that serialized object.
encodeToFile(byte[], String) - Static method in class org.springframework.util.support.Base64
Convenience method for encoding data to a file.
encodeToString(byte[]) - Static method in class org.springframework.util.Base64Utils
Base64 encodes the input.
endsWithIgnoreCase(String, String) - Static method in class org.springframework.util.StringUtils
Test if the given String ends with the specified suffix, ignoring upper/lower case.
entrySet() - Method in class org.springframework.util.LinkedMultiValueMap
 
equals(Object) - Method in exception org.springframework.beans.BeansException
 
equals(Object) - Method in class org.springframework.core.io.AbstractResource
This implementation compares description strings.
equals(Object) - Method in class org.springframework.core.io.AssetResource
This implementation compares the file names of the resources.
equals(Object) - Method in class org.springframework.core.io.ByteArrayResource
This implementation compares the underlying byte array.
equals(Object) - Method in class org.springframework.core.io.ClassPathResource
This implementation compares the underlying class path locations.
equals(Object) - Method in class org.springframework.core.io.FileSystemResource
This implementation compares the underlying File references.
equals(Object) - Method in class org.springframework.core.io.InputStreamResource
This implementation compares the underlying InputStream.
equals(Object) - Method in class org.springframework.core.io.UrlResource
This implementation compares the underlying URL references.
equals(Object) - Method in class org.springframework.core.MethodParameter
 
equals(Object) - Method in class org.springframework.util.LinkedMultiValueMap
 
ERROR_CODE - Static variable in exception org.springframework.beans.TypeMismatchException
Error code that a type mismatch error will be registered with.
ErrorCoded - Interface in org.springframework.core
Interface that can be implemented by exceptions etc that are error coded.
exists() - Method in class org.springframework.core.io.AbstractFileResolvingResource
 
exists() - Method in class org.springframework.core.io.AbstractResource
This implementation checks whether a File can be opened, falling back to whether an InputStream can be opened.
exists() - Method in class org.springframework.core.io.AssetResource
This implementation returns whether the underlying asset exists.
exists() - Method in class org.springframework.core.io.ByteArrayResource
This implementation always returns true.
exists() - Method in class org.springframework.core.io.ClassPathResource
This implementation checks for the resolution of a resource URL.
exists() - Method in class org.springframework.core.io.FileSystemResource
This implementation returns whether the underlying file exists.
exists() - Method in class org.springframework.core.io.InputStreamResource
This implementation always returns true.
exists() - Method in interface org.springframework.core.io.Resource
Return whether this resource actually exists in physical form.
extractJarFileURL(URL) - Static method in class org.springframework.util.ResourceUtils
Extract the URL for the actual jar file from the given URL (which may point to a resource in a jar file or to a jar file itself).

F

FILE_URL_PREFIX - Static variable in class org.springframework.util.ResourceUtils
URL prefix for loading from the file system: "file:"
FileCopyUtils - Class in org.springframework.util
Simple utility methods for file and stream copying.
FileCopyUtils() - Constructor for class org.springframework.util.FileCopyUtils
 
FileSystemResource - Class in org.springframework.core.io
Resource implementation for java.io.File handles.
FileSystemResource(File) - Constructor for class org.springframework.core.io.FileSystemResource
Create a new FileSystemResource from a File handle.
FileSystemResource(String) - Constructor for class org.springframework.core.io.FileSystemResource
Create a new FileSystemResource from a file path.
findCommonElementType(Collection<?>) - Static method in class org.springframework.util.CollectionUtils
Find the common element type of the given Collection, if any.
findField(Class<?>, String) - Static method in class org.springframework.util.ReflectionUtils
Attempt to find a field on the supplied Class with the supplied name.
findField(Class<?>, String, Class<?>) - Static method in class org.springframework.util.ReflectionUtils
Attempt to find a field on the supplied Class with the supplied name and/or type.
findFirstMatch(Collection<?>, Collection<?>) - Static method in class org.springframework.util.CollectionUtils
Return the first element in 'candidates' that is contained in 'source'.
findMethod(Class<?>, String) - Static method in class org.springframework.util.ReflectionUtils
Attempt to find a Method on the supplied class with the supplied name and no parameters.
findMethod(Class<?>, String, Class<?>...) - Static method in class org.springframework.util.ReflectionUtils
Attempt to find a Method on the supplied class with the supplied name and parameter types.
findValueOfType(Collection<?>, Class<T>) - Static method in class org.springframework.util.CollectionUtils
Find a single value of the given type in the given Collection.
findValueOfType(Collection<?>, Class<?>[]) - Static method in class org.springframework.util.CollectionUtils
Find a single value of one of the given types in the given Collection: searching the Collection for a value of the first type, then searching for a value of the second type, etc.
flushBase64() - Method in class org.springframework.util.support.Base64.OutputStream
Method added by PHIL.
forMethodOrConstructor(Object, int) - Static method in class org.springframework.core.MethodParameter
Create a new MethodParameter for the given method or constructor.
forName(String) - Static method in class org.springframework.util.ClassUtils
Deprecated. as of Spring 3.0, in favor of specifying a ClassLoader explicitly: see ClassUtils.forName(String, ClassLoader)
forName(String, ClassLoader) - Static method in class org.springframework.util.ClassUtils
Replacement for Class.forName() that also returns Class instances for primitives (e.g."int") and array class names (e.g.

G

GenericCollectionTypeResolver - Class in org.springframework.core
Helper class for determining element types of collections and maps.
GenericCollectionTypeResolver() - Constructor for class org.springframework.core.GenericCollectionTypeResolver
 
GenericTypeResolver - Class in org.springframework.core
Helper class for resolving generic types against type variables.
GenericTypeResolver() - Constructor for class org.springframework.core.GenericTypeResolver
 
get(Object) - Method in class org.springframework.util.LinkedCaseInsensitiveMap
 
get(Object) - Method in class org.springframework.util.LinkedMultiValueMap
 
getAllDeclaredMethods(Class<?>) - Static method in class org.springframework.util.ReflectionUtils
Get all declared methods on the leaf class and all superclasses.
getAllInterfaces(Object) - Static method in class org.springframework.util.ClassUtils
Return all interfaces that the given instance implements as array, including ones implemented by superclasses.
getAllInterfacesAsSet(Object) - Static method in class org.springframework.util.ClassUtils
Return all interfaces that the given instance implements as Set, including ones implemented by superclasses.
getAllInterfacesForClass(Class<?>) - Static method in class org.springframework.util.ClassUtils
Return all interfaces that the given class implements as array, including ones implemented by superclasses.
getAllInterfacesForClass(Class<?>, ClassLoader) - Static method in class org.springframework.util.ClassUtils
Return all interfaces that the given class implements as array, including ones implemented by superclasses.
getAllInterfacesForClassAsSet(Class) - Static method in class org.springframework.util.ClassUtils
Return all interfaces that the given class implements as Set, including ones implemented by superclasses.
getAllInterfacesForClassAsSet(Class, ClassLoader) - Static method in class org.springframework.util.ClassUtils
Return all interfaces that the given class implements as Set, including ones implemented by superclasses.
getByteArray() - Method in class org.springframework.core.io.ByteArrayResource
Return the underlying byte array.
getClassFileName(Class<?>) - Static method in class org.springframework.util.ClassUtils
Determine the name of the class file, relative to the containing package: e.g.
getClassLoader() - Method in class org.springframework.core.io.ClassPathResource
Return the ClassLoader that this resource will be obtained from.
getCollectionFieldType(Field) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic element type of the given Collection field.
getCollectionFieldType(Field, int) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic element type of the given Collection field.
getCollectionFieldType(Field, int, Map<Integer, Integer>) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic element type of the given Collection field.
getCollectionParameterType(MethodParameter) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic element type of the given Collection parameter.
getCollectionReturnType(Method) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic element type of the given Collection return type.
getCollectionReturnType(Method, int) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic element type of the given Collection return type.
getCollectionType(Class<? extends Collection>) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic element type of the given Collection class (if it declares one through a generic superclass or generic interface).
getConstructor() - Method in class org.springframework.core.MethodParameter
Return the wrapped Constructor, if any.
getConstructorIfAvailable(Class<T>, Class<?>...) - Static method in class org.springframework.util.ClassUtils
Determine whether the given class has a public constructor with the given signature, and return it if available (else return null).
getDeclaringClass() - Method in class org.springframework.core.MethodParameter
Return the class that declares the underlying Method or Constructor.
getDefaultClassLoader() - Static method in class org.springframework.util.ClassUtils
Return the default ClassLoader to use: typically the thread context ClassLoader, if available; the ClassLoader that loaded the ClassUtils class will be used as fallback.
getDescription() - Method in class org.springframework.core.io.AssetResource
 
getDescription() - Method in class org.springframework.core.io.ByteArrayResource
This implementation returns the passed-in description, if any.
getDescription() - Method in class org.springframework.core.io.ClassPathResource
This implementation returns a description that includes the class path location.
getDescription() - Method in class org.springframework.core.io.FileSystemResource
This implementation returns a description that includes the absolute path of the file.
getDescription() - Method in class org.springframework.core.io.InputStreamResource
This implementation returns the passed-in description, if any.
getDescription() - Method in interface org.springframework.core.io.Resource
Return a description for this resource, to be used for error output when working with the resource.
getDescription() - Method in class org.springframework.core.io.UrlResource
This implementation returns a description that includes the URL.
getDescriptiveType(Object) - Static method in class org.springframework.util.ClassUtils
Return a descriptive name for the given object's type: usually simply the class name, but component type class name + "[]" for arrays, and an appended list of implemented interfaces for JDK proxies.
getDisplayString(Object) - Static method in class org.springframework.util.ObjectUtils
Return a content-based String representation if obj is not null; otherwise returns an empty String.
getErrorCode() - Method in exception org.springframework.beans.TypeMismatchException
 
getErrorCode() - Method in interface org.springframework.core.ErrorCoded
Return the error code associated with this failure.
getField(Field, Object) - Static method in class org.springframework.util.ReflectionUtils
Get the field represented by the supplied field object on the specified target object.
getFile() - Method in class org.springframework.core.io.AbstractFileResolvingResource
This implementation returns a File reference for the underlying class path resource, provided that it refers to a file in the file system.
getFile(URI) - Method in class org.springframework.core.io.AbstractFileResolvingResource
This implementation returns a File reference for the underlying class path resource, provided that it refers to a file in the file system.
getFile() - Method in class org.springframework.core.io.AbstractResource
This implementation throws a FileNotFoundException, assuming that the resource cannot be resolved to an absolute file path.
getFile() - Method in class org.springframework.core.io.FileSystemResource
This implementation returns the underlying File reference.
getFile() - Method in interface org.springframework.core.io.Resource
Return a File handle for this resource.
getFile() - Method in class org.springframework.core.io.UrlResource
This implementation returns a File reference for the underlying URL/URI, provided that it refers to a file in the file system.
getFile(String) - Static method in class org.springframework.util.ResourceUtils
Resolve the given resource location to a java.io.File, i.e.
getFile(URL) - Static method in class org.springframework.util.ResourceUtils
Resolve the given resource URL to a java.io.File, i.e.
getFile(URL, String) - Static method in class org.springframework.util.ResourceUtils
Resolve the given resource URL to a java.io.File, i.e.
getFile(URI) - Static method in class org.springframework.util.ResourceUtils
Resolve the given resource URI to a java.io.File, i.e.
getFile(URI, String) - Static method in class org.springframework.util.ResourceUtils
Resolve the given resource URI to a java.io.File, i.e.
getFileForLastModifiedCheck() - Method in class org.springframework.core.io.AbstractFileResolvingResource
This implementation determines the underlying File (or jar file, in case of a resource in a jar/zip).
getFileForLastModifiedCheck() - Method in class org.springframework.core.io.AbstractResource
Determine the File to use for timestamp checking.
getFilename() - Method in class org.springframework.core.io.AbstractResource
This implementation always throws IllegalStateException, assuming that the resource does not have a filename.
getFilename() - Method in class org.springframework.core.io.ClassPathResource
This implementation returns the name of the file that this class path resource refers to.
getFilename() - Method in class org.springframework.core.io.FileSystemResource
This implementation returns the name of the file.
getFilename() - Method in interface org.springframework.core.io.Resource
Return a filename for this resource, i.e.
getFilename() - Method in class org.springframework.core.io.UrlResource
This implementation returns the name of the file that this URL refers to.
getFilename(String) - Static method in class org.springframework.util.StringUtils
Extract the filename from the given path, e.g.
getFilenameExtension(String) - Static method in class org.springframework.util.StringUtils
Extract the filename extension from the given path, e.g.
getFirst(K) - Method in class org.springframework.util.LinkedMultiValueMap
 
getFirst(K) - Method in interface org.springframework.util.MultiValueMap
Return the first value for the given key.
getGenericParameterType() - Method in class org.springframework.core.MethodParameter
Return the generic type of the method/constructor parameter.
getIdentityHexString(Object) - Static method in class org.springframework.util.ObjectUtils
Return a hex String form of an object's identity hash code.
getInputStream() - Method in class org.springframework.core.io.AssetResource
 
getInputStream() - Method in class org.springframework.core.io.ByteArrayResource
This implementation returns a ByteArrayInputStream for the underlying byte array.
getInputStream() - Method in class org.springframework.core.io.ClassPathResource
This implementation opens an InputStream for the given class path resource.
getInputStream() - Method in class org.springframework.core.io.FileSystemResource
This implementation opens a FileInputStream for the underlying file.
getInputStream() - Method in class org.springframework.core.io.InputStreamResource
This implementation throws IllegalStateException if attempting to read the underlying stream multiple times.
getInputStream() - Method in interface org.springframework.core.io.InputStreamSource
Return an InputStream.
getInputStream() - Method in class org.springframework.core.io.UrlResource
This implementation opens an InputStream for the given URL.
getMapKeyFieldType(Field) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic key type of the given Map field.
getMapKeyFieldType(Field, int) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic key type of the given Map field.
getMapKeyFieldType(Field, int, Map<Integer, Integer>) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic key type of the given Map field.
getMapKeyParameterType(MethodParameter) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic key type of the given Map parameter.
getMapKeyReturnType(Method) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic key type of the given Map return type.
getMapKeyReturnType(Method, int) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic key type of the given Map return type.
getMapKeyType(Class<? extends Map>) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic key type of the given Map class (if it declares one through a generic superclass or generic interface).
getMapValueFieldType(Field) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic value type of the given Map field.
getMapValueFieldType(Field, int) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic value type of the given Map field.
getMapValueFieldType(Field, int, Map<Integer, Integer>) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic value type of the given Map field.
getMapValueParameterType(MethodParameter) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic value type of the given Map parameter.
getMapValueReturnType(Method) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic value type of the given Map return type.
getMapValueReturnType(Method, int) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic value type of the given Map return type.
getMapValueType(Class<? extends Map>) - Static method in class org.springframework.core.GenericCollectionTypeResolver
Determine the generic value type of the given Map class (if it declares one through a generic superclass or generic interface).
getMessage() - Method in exception org.springframework.core.NestedCheckedException
Return the detail message, including the message from the nested exception if there is one.
getMessage() - Method in exception org.springframework.core.NestedIOException
Return the detail message, including the message from the nested exception if there is one.
getMessage() - Method in exception org.springframework.core.NestedRuntimeException
Return the detail message, including the message from the nested exception if there is one.
getMethod() - Method in class org.springframework.core.MethodParameter
Return the wrapped Method, if any.
getMethod(Class<?>, String, Class<?>...) - Static method in class org.springframework.util.ClassUtils
Determine whether the given class has a method with the given signature, and return it if available (else throws an IllegalStateException).
getMethodAnnotation(Class<T>) - Method in class org.springframework.core.MethodParameter
Return the method/constructor annotation of the given type, if available.
getMethodAnnotations() - Method in class org.springframework.core.MethodParameter
Return the annotations associated with the target method/constructor itself.
getMethodCountForName(Class<?>, String) - Static method in class org.springframework.util.ClassUtils
Return the number of methods with a given name (with any argument types), for the given class and/or its superclasses.
getMethodIfAvailable(Class<?>, String, Class<?>...) - Static method in class org.springframework.util.ClassUtils
Determine whether the given class has a method with the given signature, and return it if available (else return null).
getMostSpecificCause() - Method in exception org.springframework.core.NestedCheckedException
Retrieve the most specific cause of this exception, that is, either the innermost cause (root cause) or this exception itself.
getMostSpecificCause() - Method in exception org.springframework.core.NestedRuntimeException
Retrieve the most specific cause of this exception, that is, either the innermost cause (root cause) or this exception itself.
getNestingLevel() - Method in class org.springframework.core.MethodParameter
Return the nesting level of the target type (typically 1; e.g.
getOutputStream() - Method in class org.springframework.core.io.FileSystemResource
This implementation opens a FileOutputStream for the underlying file.
getOutputStream() - Method in interface org.springframework.core.io.WritableResource
Return an OutputStream for the underlying resource, allowing to (over-)write its content.
getPackageName(Class<?>) - Static method in class org.springframework.util.ClassUtils
Determine the name of the package of the given class: e.g.
getParameterAnnotation(Class<T>) - Method in class org.springframework.core.MethodParameter
Return the parameter annotation of the given type, if available.
getParameterAnnotations() - Method in class org.springframework.core.MethodParameter
Return the annotations associated with the specific method/constructor parameter.
getParameterIndex() - Method in class org.springframework.core.MethodParameter
Return the index of the method/constructor parameter.
getParameterName() - Method in class org.springframework.core.MethodParameter
Return the name of the method/constructor parameter.
getParameterNames(Method) - Method in interface org.springframework.core.ParameterNameDiscoverer
Return parameter names for this method, or null if they cannot be determined.
getParameterNames(Constructor<?>) - Method in interface org.springframework.core.ParameterNameDiscoverer
Return parameter names for this constructor, or null if they cannot be determined.
getParameterType() - Method in class org.springframework.core.MethodParameter
Return the type of the method/constructor parameter.
getPath() - Method in class org.springframework.core.io.ClassPathResource
Return the path for this resource (as resource path within the class path).
getPath() - Method in class org.springframework.core.io.FileSystemResource
Return the file path for this resource.
getPropertyChangeEvent() - Method in exception org.springframework.beans.PropertyAccessException
Return the PropertyChangeEvent that resulted in the problem.
getPropertyName() - Method in exception org.springframework.beans.PropertyAccessException
Return the name of the affected property, if available.
getQualifiedMethodName(Method) - Static method in class org.springframework.util.ClassUtils
Return the qualified name of the given method, consisting of fully qualified interface/class name + "." + method name.
getQualifiedName(Class<?>) - Static method in class org.springframework.util.ClassUtils
Return the qualified name of the given class: usually simply the class name, but component type class name + "[]" for arrays.
getRequiredType() - Method in exception org.springframework.beans.TypeMismatchException
Return the required target type, if any.
getRootCause() - Method in exception org.springframework.core.NestedCheckedException
Retrieve the innermost cause of this exception, if any.
getRootCause() - Method in exception org.springframework.core.NestedRuntimeException
Retrieve the innermost cause of this exception, if any.
getShortName(String) - Static method in class org.springframework.util.ClassUtils
Get the class name without the qualified package name.
getShortName(Class<?>) - Static method in class org.springframework.util.ClassUtils
Get the class name without the qualified package name.
getStaticMethod(Class<?>, String, Class<?>...) - Static method in class org.springframework.util.ClassUtils
Return a public static method of a class.
getTargetType(MethodParameter) - Static method in class org.springframework.core.GenericTypeResolver
Determine the target type for the given parameter specification.
getTypeIndexForCurrentLevel() - Method in class org.springframework.core.MethodParameter
Return the type index for the current nesting level.
getTypeIndexForLevel(int) - Method in class org.springframework.core.MethodParameter
Return the type index for the specified nesting level.
getTypeVariableMap(Class<?>) - Static method in class org.springframework.core.GenericTypeResolver
Build a mapping of TypeVariable names to concrete Class for the specified Class.
getUniqueDeclaredMethods(Class<?>) - Static method in class org.springframework.util.ReflectionUtils
Get the unique set of declared methods on the leaf class and all superclasses.
getURI() - Method in class org.springframework.core.io.AbstractResource
This implementation builds a URI based on the URL returned by AbstractResource.getURL().
getURI() - Method in class org.springframework.core.io.FileSystemResource
This implementation returns a URI for the underlying file.
getURI() - Method in interface org.springframework.core.io.Resource
Return a URI handle for this resource.
getURI() - Method in class org.springframework.core.io.UrlResource
This implementation returns the underlying URI directly, if possible.
getURL() - Method in class org.springframework.core.io.AbstractResource
This implementation throws a FileNotFoundException, assuming that the resource cannot be resolved to a URL.
getURL() - Method in class org.springframework.core.io.ClassPathResource
This implementation returns a URL for the underlying class path resource.
getURL() - Method in class org.springframework.core.io.FileSystemResource
This implementation returns a URL for the underlying file.
getURL() - Method in interface org.springframework.core.io.Resource
Return a URL handle for this resource.
getURL() - Method in class org.springframework.core.io.UrlResource
This implementation returns the underlying URL reference.
getURL(String) - Static method in class org.springframework.util.ResourceUtils
Resolve the given resource location to a java.net.URL.
getUserClass(Object) - Static method in class org.springframework.util.ClassUtils
Return the user-defined class for the given instance: usually simply the class of the given instance, but the original class in case of a CGLIB-generated subclass.
getUserClass(Class<?>) - Static method in class org.springframework.util.ClassUtils
Return the user-defined class for the given class: usually simply the given class, but the original class in case of a CGLIB-generated subclass.
getValue() - Method in exception org.springframework.beans.PropertyAccessException
Return the affected value that was about to be set, if any.
getValue() - Method in exception org.springframework.beans.TypeMismatchException
Return the offending value (may be null)
GZIP - Static variable in class org.springframework.util.support.Base64
Specify that data should be gzip-compressed in second bit.

H

handleInvocationTargetException(InvocationTargetException) - Static method in class org.springframework.util.ReflectionUtils
Handle the given invocation target exception.
handleReflectionException(Exception) - Static method in class org.springframework.util.ReflectionUtils
Handle the given reflection exception.
hasAtLeastOneMethodWithName(Class<?>, String) - Static method in class org.springframework.util.ClassUtils
Does the given class or one of its superclasses at least have one or more methods with the supplied name (with any argument types)? Includes non-public methods.
hasConstructor(Class<?>, Class<?>...) - Static method in class org.springframework.util.ClassUtils
Determine whether the given class has a public constructor with the given signature.
hashCode() - Method in exception org.springframework.beans.BeansException
 
hashCode() - Method in class org.springframework.core.io.AbstractResource
This implementation returns the description's hash code.
hashCode() - Method in class org.springframework.core.io.AssetResource
This implementation returns the hash code of the file name.
hashCode() - Method in class org.springframework.core.io.ByteArrayResource
This implementation returns the hash code based on the underlying byte array.
hashCode() - Method in class org.springframework.core.io.ClassPathResource
This implementation returns the hash code of the underlying class path location.
hashCode() - Method in class org.springframework.core.io.FileSystemResource
This implementation returns the hash code of the underlying File reference.
hashCode() - Method in class org.springframework.core.io.InputStreamResource
This implementation returns the hash code of the underlying InputStream.
hashCode() - Method in class org.springframework.core.io.UrlResource
This implementation returns the hash code of the underlying URL reference.
hashCode() - Method in class org.springframework.core.MethodParameter
 
hashCode() - Method in class org.springframework.util.LinkedMultiValueMap
 
hashCode(boolean) - Static method in class org.springframework.util.ObjectUtils
Return the same value as Boolean.hashCode().
hashCode(double) - Static method in class org.springframework.util.ObjectUtils
Return the same value as Double.hashCode().
hashCode(float) - Static method in class org.springframework.util.ObjectUtils
Return the same value as Float.hashCode().
hashCode(long) - Static method in class org.springframework.util.ObjectUtils
Return the same value as Long.hashCode().
hasLength(String, String) - Static method in class org.springframework.util.Assert
Assert that the given String is not empty; that is, it must not be null and not the empty String.
hasLength(String) - Static method in class org.springframework.util.Assert
Assert that the given String is not empty; that is, it must not be null and not the empty String.
hasLength(CharSequence) - Static method in class org.springframework.util.StringUtils
Check that the given CharSequence is neither null nor of length 0.
hasLength(String) - Static method in class org.springframework.util.StringUtils
Check that the given String is neither null nor of length 0.
hasMethod(Class<?>, String, Class<?>...) - Static method in class org.springframework.util.ClassUtils
Determine whether the given class has a method with the given signature.
hasParameterAnnotation(Class<T>) - Method in class org.springframework.core.MethodParameter
Return true if the parameter has the given annotation type, and false if it doesn't.
hasParameterAnnotations() - Method in class org.springframework.core.MethodParameter
Return true if the parameter has at least one annotation, false if it has none.
hasText(String, String) - Static method in class org.springframework.util.Assert
Assert that the given String has valid text content; that is, it must not be null and must contain at least one non-whitespace character.
hasText(String) - Static method in class org.springframework.util.Assert
Assert that the given String has valid text content; that is, it must not be null and must contain at least one non-whitespace character.
hasText(CharSequence) - Static method in class org.springframework.util.StringUtils
Check whether the given CharSequence has actual text.
hasText(String) - Static method in class org.springframework.util.StringUtils
Check whether the given String has actual text.
hasUniqueObject(Collection<?>) - Static method in class org.springframework.util.CollectionUtils
Determine whether the given Collection only contains a single unique object.

I

identityToString(Object) - Static method in class org.springframework.util.ObjectUtils
Return a String representation of an object's overall identity.
increaseNestingLevel() - Method in class org.springframework.core.MethodParameter
Increase this parameter's nesting level.
initParameterNameDiscovery(ParameterNameDiscoverer) - Method in class org.springframework.core.MethodParameter
Initialize parameter name discovery for this method parameter.
InputStreamResource - Class in org.springframework.core.io
Resource implementation for a given InputStream.
InputStreamResource(InputStream) - Constructor for class org.springframework.core.io.InputStreamResource
Create a new InputStreamResource.
InputStreamResource(InputStream, String) - Constructor for class org.springframework.core.io.InputStreamResource
Create a new InputStreamResource.
InputStreamSource - Interface in org.springframework.core.io
Simple interface for objects that are sources for an InputStream.
invokeJdbcMethod(Method, Object) - Static method in class org.springframework.util.ReflectionUtils
Invoke the specified JDBC API Method against the supplied target object with no arguments.
invokeJdbcMethod(Method, Object, Object...) - Static method in class org.springframework.util.ReflectionUtils
Invoke the specified JDBC API Method against the supplied target object with the supplied arguments.
invokeMethod(Method, Object) - Static method in class org.springframework.util.ReflectionUtils
Invoke the specified Method against the supplied target object with no arguments.
invokeMethod(Method, Object, Object...) - Static method in class org.springframework.util.ReflectionUtils
Invoke the specified Method against the supplied target object with the supplied arguments.
isArray(Object) - Static method in class org.springframework.util.ObjectUtils
Determine whether the given object is an array: either an Object array or a primitive array.
isAssignable(Class<?>, Class<?>) - Static method in class org.springframework.util.Assert
Assert that superType.isAssignableFrom(subType) is true.
isAssignable(Class<?>, Class<?>, String) - Static method in class org.springframework.util.Assert
Assert that superType.isAssignableFrom(subType) is true.
isAssignable(Class<?>, Class<?>) - Static method in class org.springframework.util.ClassUtils
Check if the right-hand side type may be assigned to the left-hand side type, assuming setting by reflection.
isAssignable(Type, Type) - Static method in class org.springframework.util.TypeUtils
Check if the right-hand side type may be assigned to the left-hand side type following the Java generics rules.
isAssignableBound(Type, Type) - Static method in class org.springframework.util.TypeUtils
 
isAssignableValue(Class<?>, Object) - Static method in class org.springframework.util.ClassUtils
Determine if the given type is assignable from the given value, assuming setting by reflection.
isCacheSafe(Class<?>, ClassLoader) - Static method in class org.springframework.util.ClassUtils
Check whether the given class is cache-safe in the given context, i.e.
isCheckedException(Throwable) - Static method in class org.springframework.util.ObjectUtils
Return whether the given throwable is a checked exception: that is, neither a RuntimeException nor an Error.
isCompatibleWithThrowsClause(Throwable, Class<?>[]) - Static method in class org.springframework.util.ObjectUtils
Check whether the given exception is compatible with the exceptions declared in a throws clause.
isEmpty(Collection<?>) - Static method in class org.springframework.util.CollectionUtils
Return true if the supplied Collection is null or empty.
isEmpty(Map<?, ?>) - Static method in class org.springframework.util.CollectionUtils
Return true if the supplied Map is null or empty.
isEmpty() - Method in class org.springframework.util.LinkedMultiValueMap
 
isEmpty(Object[]) - Static method in class org.springframework.util.ObjectUtils
Determine whether the given array is empty: i.e.
isEqualsMethod(Method) - Static method in class org.springframework.util.ReflectionUtils
Determine whether the given method is an "equals" method.
isFileURL(URL) - Static method in class org.springframework.util.ResourceUtils
Determine whether the given URL points to a resource in the file system, that is, has protocol "file" or "vfs".
isHashCodeMethod(Method) - Static method in class org.springframework.util.ReflectionUtils
Determine whether the given method is a "hashCode" method.
isInstanceOf(Class<?>, Object) - Static method in class org.springframework.util.Assert
Assert that the provided object is an instance of the provided class.
isInstanceOf(Class<?>, Object, String) - Static method in class org.springframework.util.Assert
Assert that the provided object is an instance of the provided class.
isJarURL(URL) - Static method in class org.springframework.util.ResourceUtils
Determine whether the given URL points to a resource in a jar file, that is, has protocol "jar", "zip", "wsjar" or "code-source".
isNull(Object, String) - Static method in class org.springframework.util.Assert
Assert that an object is null .
isNull(Object) - Static method in class org.springframework.util.Assert
Assert that an object is null .
isObjectMethod(Method) - Static method in class org.springframework.util.ReflectionUtils
Determine whether the given method is originally declared by Object.
isOpen() - Method in class org.springframework.core.io.AbstractResource
This implementation always returns false.
isOpen() - Method in class org.springframework.core.io.InputStreamResource
This implementation always returns true.
isOpen() - Method in interface org.springframework.core.io.Resource
Return whether this resource represents a handle with an open stream.
isPresent(String) - Static method in class org.springframework.util.ClassUtils
Deprecated. as of Spring 2.5, in favor of ClassUtils.isPresent(String, ClassLoader)
isPresent(String, ClassLoader) - Static method in class org.springframework.util.ClassUtils
Determine whether the Class identified by the supplied name is present and can be loaded.
isPrimitiveArray(Class<?>) - Static method in class org.springframework.util.ClassUtils
Check if the given class represents an array of primitives, i.e.
isPrimitiveOrWrapper(Class<?>) - Static method in class org.springframework.util.ClassUtils
Check if the given class represents a primitive (i.e.
isPrimitiveWrapper(Class<?>) - Static method in class org.springframework.util.ClassUtils
Check if the given class represents a primitive wrapper, i.e.
isPrimitiveWrapperArray(Class<?>) - Static method in class org.springframework.util.ClassUtils
Check if the given class represents an array of primitive wrappers, i.e.
isPublicStaticFinal(Field) - Static method in class org.springframework.util.ReflectionUtils
Determine whether the given field is a "public static final" constant.
isReadable() - Method in class org.springframework.core.io.AbstractFileResolvingResource
 
isReadable() - Method in class org.springframework.core.io.AbstractResource
This implementation always returns true.
isReadable() - Method in class org.springframework.core.io.FileSystemResource
This implementation checks whether the underlying file is marked as readable (and corresponds to an actual file with content, not to a directory).
isReadable() - Method in interface org.springframework.core.io.Resource
Return whether the contents of this resource can be read, e.g.
isToStringMethod(Method) - Static method in class org.springframework.util.ReflectionUtils
Determine whether the given method is a "toString" method.
isTrue(boolean, String) - Static method in class org.springframework.util.Assert
Assert a boolean expression, throwing IllegalArgumentException if the test result is false.
isTrue(boolean) - Static method in class org.springframework.util.Assert
Assert a boolean expression, throwing IllegalArgumentException if the test result is false.
isUrl(String) - Static method in class org.springframework.util.ResourceUtils
Return whether the given resource location is a URL: either a special "classpath" pseudo URL or a standard URL.
isVisible(Class<?>, ClassLoader) - Static method in class org.springframework.util.ClassUtils
Check whether the given class is visible in the given ClassLoader.
isWritable() - Method in class org.springframework.core.io.FileSystemResource
This implementation checks whether the underlying file is marked as writable (and corresponds to an actual file with content, not to a directory).
isWritable() - Method in interface org.springframework.core.io.WritableResource
Return whether the contents of this resource can be modified, e.g.

J

JAR_URL_SEPARATOR - Static variable in class org.springframework.util.ResourceUtils
Separator between JAR URL and file path within the JAR

K

keySet() - Method in class org.springframework.util.LinkedMultiValueMap
 

L

lastModified() - Method in class org.springframework.core.io.AbstractFileResolvingResource
 
lastModified() - Method in class org.springframework.core.io.AbstractResource
This implementation checks the timestamp of the underlying File, if available.
lastModified() - Method in interface org.springframework.core.io.Resource
Determine the last-modified timestamp for this resource.
LinkedCaseInsensitiveMap<V> - Class in org.springframework.util
LinkedHashMap variant that stores String keys in a case-insensitive manner, for example for key-based access in a results table.
LinkedCaseInsensitiveMap() - Constructor for class org.springframework.util.LinkedCaseInsensitiveMap
Create a new LinkedCaseInsensitiveMap for the default Locale.
LinkedCaseInsensitiveMap(Locale) - Constructor for class org.springframework.util.LinkedCaseInsensitiveMap
Create a new LinkedCaseInsensitiveMap that stores lower-case keys according to the given Locale.
LinkedCaseInsensitiveMap(int) - Constructor for class org.springframework.util.LinkedCaseInsensitiveMap
Create a new LinkedCaseInsensitiveMap that wraps a LinkedHashMap with the given initial capacity and stores lower-case keys according to the default Locale.
LinkedCaseInsensitiveMap(int, Locale) - Constructor for class org.springframework.util.LinkedCaseInsensitiveMap
Create a new LinkedCaseInsensitiveMap that wraps a LinkedHashMap with the given initial capacity and stores lower-case keys according to the given Locale.
LinkedMultiValueMap<K,V> - Class in org.springframework.util
Simple implementation of MultiValueMap that wraps a LinkedHashMap, storing multiple values in a LinkedList.
LinkedMultiValueMap() - Constructor for class org.springframework.util.LinkedMultiValueMap
Create a new LinkedMultiValueMap that wraps a LinkedHashMap.
LinkedMultiValueMap(int) - Constructor for class org.springframework.util.LinkedMultiValueMap
Create a new LinkedMultiValueMap that wraps a LinkedHashMap with the given initial capacity.
LinkedMultiValueMap(Map<K, List<V>>) - Constructor for class org.springframework.util.LinkedMultiValueMap
Copy constructor: Create a new LinkedMultiValueMap with the same mappings as the specified Map.

M

makeAccessible(Field) - Static method in class org.springframework.util.ReflectionUtils
Make the given field accessible, explicitly setting it accessible if necessary.
makeAccessible(Method) - Static method in class org.springframework.util.ReflectionUtils
Make the given method accessible, explicitly setting it accessible if necessary.
makeAccessible(Constructor<?>) - Static method in class org.springframework.util.ReflectionUtils
Make the given constructor accessible, explicitly setting it accessible if necessary.
matches(Field) - Method in interface org.springframework.util.ReflectionUtils.FieldFilter
Determine whether the given field matches.
matches(Method) - Method in interface org.springframework.util.ReflectionUtils.MethodFilter
Determine whether the given method matches.
matchesTypeName(Class<?>, String) - Static method in class org.springframework.util.ClassUtils
Check whether the given class matches the user-specified type name.
mergeArrayIntoCollection(Object, Collection<Object>) - Static method in class org.springframework.util.CollectionUtils
Merge the given array into the given Collection.
mergePropertiesIntoMap(Properties, Map<String, Object>) - Static method in class org.springframework.util.CollectionUtils
Merge the given Properties instance into the given Map, copying all properties (key-value pairs) over.
mergeStringArrays(String[], String[]) - Static method in class org.springframework.util.StringUtils
Merge the given String arrays into one, with overlapping array elements only included once.
MethodParameter - Class in org.springframework.core
Helper class that encapsulates the specification of a method parameter, i.e.
MethodParameter(Method, int) - Constructor for class org.springframework.core.MethodParameter
Create a new MethodParameter for the given method, with nesting level 1.
MethodParameter(Method, int, int) - Constructor for class org.springframework.core.MethodParameter
Create a new MethodParameter for the given method.
MethodParameter(Constructor<?>, int) - Constructor for class org.springframework.core.MethodParameter
Create a new MethodParameter for the given constructor, with nesting level 1.
MethodParameter(Constructor<?>, int, int) - Constructor for class org.springframework.core.MethodParameter
Create a new MethodParameter for the given constructor.
MethodParameter(MethodParameter) - Constructor for class org.springframework.core.MethodParameter
Copy constructor, resulting in an independent MethodParameter object based on the same metadata and cache state that the original object was in.
MultiValueMap<K,V> - Interface in org.springframework.util
Extension of the Map interface that stores multiple values.

N

NestedCheckedException - Exception in org.springframework.core
Handy class for wrapping checked Exceptions with a root cause.
NestedCheckedException(String) - Constructor for exception org.springframework.core.NestedCheckedException
Construct a NestedCheckedException with the specified detail message.
NestedCheckedException(String, Throwable) - Constructor for exception org.springframework.core.NestedCheckedException
Construct a NestedCheckedException with the specified detail message and nested exception.
NestedExceptionUtils - Class in org.springframework.core
Helper class for implementing exception classes which are capable of holding nested exceptions.
NestedExceptionUtils() - Constructor for class org.springframework.core.NestedExceptionUtils
 
NestedIOException - Exception in org.springframework.core
Subclass of IOException that properly handles a root cause, exposing the root cause just like NestedChecked/RuntimeException does.
NestedIOException(String) - Constructor for exception org.springframework.core.NestedIOException
Construct a NestedIOException with the specified detail message.
NestedIOException(String, Throwable) - Constructor for exception org.springframework.core.NestedIOException
Construct a NestedIOException with the specified detail message and nested exception.
NestedRuntimeException - Exception in org.springframework.core
Handy class for wrapping runtime Exceptions with a root cause.
NestedRuntimeException(String) - Constructor for exception org.springframework.core.NestedRuntimeException
Construct a NestedRuntimeException with the specified detail message.
NestedRuntimeException(String, Throwable) - Constructor for exception org.springframework.core.NestedRuntimeException
Construct a NestedRuntimeException with the specified detail message and nested exception.
NO_OPTIONS - Static variable in class org.springframework.util.support.Base64
No options specified.
NON_BRIDGED_METHODS - Static variable in class org.springframework.util.ReflectionUtils
Pre-built MethodFilter that matches all non-bridge methods.
noNullElements(Object[], String) - Static method in class org.springframework.util.Assert
Assert that an array has no null elements.
noNullElements(Object[]) - Static method in class org.springframework.util.Assert
Assert that an array has no null elements.
notEmpty(Object[], String) - Static method in class org.springframework.util.Assert
Assert that an array has elements; that is, it must not be null and must have at least one element.
notEmpty(Object[]) - Static method in class org.springframework.util.Assert
Assert that an array has elements; that is, it must not be null and must have at least one element.
notEmpty(Collection<?>, String) - Static method in class org.springframework.util.Assert
Assert that a collection has elements; that is, it must not be null and must have at least one element.
notEmpty(Collection<?>) - Static method in class org.springframework.util.Assert
Assert that a collection has elements; that is, it must not be null and must have at least one element.
notEmpty(Map<?, ?>, String) - Static method in class org.springframework.util.Assert
Assert that a Map has entries; that is, it must not be null and must have at least one entry.
notEmpty(Map<?, ?>) - Static method in class org.springframework.util.Assert
Assert that a Map has entries; that is, it must not be null and must have at least one entry.
notNull(Object, String) - Static method in class org.springframework.util.Assert
Assert that an object is not null .
notNull(Object) - Static method in class org.springframework.util.Assert
Assert that an object is not null .
nullSafeClassName(Object) - Static method in class org.springframework.util.ObjectUtils
Determine the class name for the given object.
nullSafeEquals(Object, Object) - Static method in class org.springframework.util.ObjectUtils
Determine if the given objects are equal, returning true if both are null or false if only one is null.
nullSafeHashCode(Object) - Static method in class org.springframework.util.ObjectUtils
Return as hash code for the given object; typically the value of Object.hashCode().
nullSafeHashCode(Object[]) - Static method in class org.springframework.util.ObjectUtils
Return a hash code based on the contents of the specified array.
nullSafeHashCode(boolean[]) - Static method in class org.springframework.util.ObjectUtils
Return a hash code based on the contents of the specified array.
nullSafeHashCode(byte[]) - Static method in class org.springframework.util.ObjectUtils
Return a hash code based on the contents of the specified array.
nullSafeHashCode(char[]) - Static method in class org.springframework.util.ObjectUtils
Return a hash code based on the contents of the specified array.
nullSafeHashCode(double[]) - Static method in class org.springframework.util.ObjectUtils
Return a hash code based on the contents of the specified array.
nullSafeHashCode(float[]) - Static method in class org.springframework.util.ObjectUtils
Return a hash code based on the contents of the specified array.
nullSafeHashCode(int[]) - Static method in class org.springframework.util.ObjectUtils
Return a hash code based on the contents of the specified array.
nullSafeHashCode(long[]) - Static method in class org.springframework.util.ObjectUtils
Return a hash code based on the contents of the specified array.
nullSafeHashCode(short[]) - Static method in class org.springframework.util.ObjectUtils
Return a hash code based on the contents of the specified array.
nullSafeToString(Object) - Static method in class org.springframework.util.ObjectUtils
Return a String representation of the specified Object.
nullSafeToString(Object[]) - Static method in class org.springframework.util.ObjectUtils
Return a String representation of the contents of the specified array.
nullSafeToString(boolean[]) - Static method in class org.springframework.util.ObjectUtils
Return a String representation of the contents of the specified array.
nullSafeToString(byte[]) - Static method in class org.springframework.util.ObjectUtils
Return a String representation of the contents of the specified array.
nullSafeToString(char[]) - Static method in class org.springframework.util.ObjectUtils
Return a String representation of the contents of the specified array.
nullSafeToString(double[]) - Static method in class org.springframework.util.ObjectUtils
Return a String representation of the contents of the specified array.
nullSafeToString(float[]) - Static method in class org.springframework.util.ObjectUtils
Return a String representation of the contents of the specified array.
nullSafeToString(int[]) - Static method in class org.springframework.util.ObjectUtils
Return a String representation of the contents of the specified array.
nullSafeToString(long[]) - Static method in class org.springframework.util.ObjectUtils
Return a String representation of the contents of the specified array.
nullSafeToString(short[]) - Static method in class org.springframework.util.ObjectUtils
Return a String representation of the contents of the specified array.
NumberUtils - Class in org.springframework.util
Miscellaneous utility methods for number conversion and parsing.
NumberUtils() - Constructor for class org.springframework.util.NumberUtils
 

O

ObjectUtils - Class in org.springframework.util
Miscellaneous object utility methods.
ObjectUtils() - Constructor for class org.springframework.util.ObjectUtils
 
ORDERED - Static variable in class org.springframework.util.support.Base64
Encode using the special "ordered" dialect of Base64 described here: http://www.faqs.org/qa/rfcc-1940.html.
org.springframework.beans - package org.springframework.beans
 
org.springframework.beans.factory - package org.springframework.beans.factory
 
org.springframework.core - package org.springframework.core
 
org.springframework.core.io - package org.springframework.core.io
 
org.springframework.util - package org.springframework.util
 
org.springframework.util.support - package org.springframework.util.support
 
overrideThreadContextClassLoader(ClassLoader) - Static method in class org.springframework.util.ClassUtils
Override the thread context ClassLoader with the environment's bean ClassLoader if necessary, i.e.

P

ParameterNameDiscoverer - Interface in org.springframework.core
Interface to discover parameter names for methods and constructors.
parseLocaleString(String) - Static method in class org.springframework.util.StringUtils
Parse the given localeString value into a Locale.
parseNumber(String, Class<T>) - Static method in class org.springframework.util.NumberUtils
Parse the given text into a number instance of the given target class, using the corresponding decode / valueOf methods.
parseNumber(String, Class<T>, NumberFormat) - Static method in class org.springframework.util.NumberUtils
Parse the given text into a number instance of the given target class, using the given NumberFormat.
pathEquals(String, String) - Static method in class org.springframework.util.StringUtils
Compare two paths after normalization of them.
PropertyAccessException - Exception in org.springframework.beans
Superclass for exceptions related to a property access, such as type mismatch or invocation target exception.
PropertyAccessException(PropertyChangeEvent, String, Throwable) - Constructor for exception org.springframework.beans.PropertyAccessException
Create a new PropertyAccessException.
PropertyAccessException(String, Throwable) - Constructor for exception org.springframework.beans.PropertyAccessException
Create a new PropertyAccessException without PropertyChangeEvent.
put(String, V) - Method in class org.springframework.util.LinkedCaseInsensitiveMap
 
put(K, List<V>) - Method in class org.springframework.util.LinkedMultiValueMap
 
putAll(Map<? extends String, ? extends V>) - Method in class org.springframework.util.LinkedCaseInsensitiveMap
 
putAll(Map<? extends K, ? extends List<V>>) - Method in class org.springframework.util.LinkedMultiValueMap
 

Q

quote(String) - Static method in class org.springframework.util.StringUtils
Quote the given String with single quotes.
quoteIfString(Object) - Static method in class org.springframework.util.StringUtils
Turn the given Object into a String with single quotes if it is a String; keeping the Object as-is else.

R

read() - Method in class org.springframework.util.support.Base64.InputStream
Reads enough of the input stream to convert to/from Base64 and returns the next byte.
read(byte[], int, int) - Method in class org.springframework.util.support.Base64.InputStream
Calls Base64.InputStream.read() repeatedly until the end of stream is reached or len bytes are read.
ReflectionUtils - Class in org.springframework.util
Simple utility class for working with the reflection API and handling reflection exceptions.
ReflectionUtils() - Constructor for class org.springframework.util.ReflectionUtils
 
ReflectionUtils.FieldCallback - Interface in org.springframework.util
Callback interface invoked on each field in the hierarchy.
ReflectionUtils.FieldFilter - Interface in org.springframework.util
Callback optionally used to filter fields to be operated on by a field callback.
ReflectionUtils.MethodCallback - Interface in org.springframework.util
Action to take on each method.
ReflectionUtils.MethodFilter - Interface in org.springframework.util
Callback optionally used to filter methods to be operated on by a method callback.
remove(Object) - Method in class org.springframework.util.LinkedCaseInsensitiveMap
 
remove(Object) - Method in class org.springframework.util.LinkedMultiValueMap
 
removeDuplicateStrings(String[]) - Static method in class org.springframework.util.StringUtils
Remove duplicate Strings from the given array.
replace(String, String, String) - Static method in class org.springframework.util.StringUtils
Replace all occurences of a substring within a string with another string.
resolveClassName(String, ClassLoader) - Static method in class org.springframework.util.ClassUtils
Resolve the given class name into a Class instance.
resolveParameterType(MethodParameter, Class<?>) - Static method in class org.springframework.core.GenericTypeResolver
Determine the target type for the given generic parameter type.
resolvePrimitiveClassName(String) - Static method in class org.springframework.util.ClassUtils
Resolve the given class name as primitive class, if appropriate, according to the JVM's naming rules for primitive classes.
resolvePrimitiveIfNecessary(Class<?>) - Static method in class org.springframework.util.ClassUtils
Resolve the given class if it is a primitive class, returning the corresponding primitive wrapper type instead.
resolveReturnType(Method, Class<?>) - Static method in class org.springframework.core.GenericTypeResolver
Determine the target type for the generic return type of the given method.
resolveReturnTypeArgument(Method, Class<?>) - Static method in class org.springframework.core.GenericTypeResolver
Resolve the single type argument of the given generic interface against the given target method which is assumed to return the given interface or an implementation of it.
resolveType(Type, Map<TypeVariable<?>, Type>) - Static method in class org.springframework.core.GenericTypeResolver
Resolve the specified generic type against the given TypeVariable map.
resolveTypeArgument(Class<?>, Class<?>) - Static method in class org.springframework.core.GenericTypeResolver
Resolve the single type argument of the given generic interface against the given target class which is assumed to implement the generic interface and possibly declare a concrete type for its type variable.
resolveTypeArguments(Class<?>, Class<?>) - Static method in class org.springframework.core.GenericTypeResolver
Resolve the type arguments of the given generic interface against the given target class which is assumed to implement the generic interface and possibly declare concrete types for its type variables.
Resource - Interface in org.springframework.core.io
Interface for a resource descriptor that abstracts from the actual type of underlying resource, such as a file or class path resource.
ResourceUtils - Class in org.springframework.util
Utility methods for resolving resource locations to files in the file system.
ResourceUtils() - Constructor for class org.springframework.util.ResourceUtils
 
resumeEncoding() - Method in class org.springframework.util.support.Base64.OutputStream
Resumes encoding of the stream.
rethrowException(Throwable) - Static method in class org.springframework.util.ReflectionUtils
Rethrow the given exception, which is presumably the target exception of an InvocationTargetException.
rethrowRuntimeException(Throwable) - Static method in class org.springframework.util.ReflectionUtils
Rethrow the given exception, which is presumably the target exception of an InvocationTargetException.

S

set(K, V) - Method in class org.springframework.util.LinkedMultiValueMap
 
set(K, V) - Method in interface org.springframework.util.MultiValueMap
Set the given single value under the given key.
setAll(Map<K, V>) - Method in class org.springframework.util.LinkedMultiValueMap
 
setAll(Map<K, V>) - Method in interface org.springframework.util.MultiValueMap
Set the given values under.
setField(Field, Object, Object) - Static method in class org.springframework.util.ReflectionUtils
Set the field represented by the supplied field object on the specified target object to the specified value.
setTypeIndexForCurrentLevel(int) - Method in class org.springframework.core.MethodParameter
Set the type index for the current nesting level.
shallowCopyFieldState(Object, Object) - Static method in class org.springframework.util.ReflectionUtils
Given the source object and the destination, which must be the same class or a subclass, copy all fields, including inherited fields.
size() - Method in class org.springframework.util.LinkedMultiValueMap
 
sortStringArray(String[]) - Static method in class org.springframework.util.StringUtils
Turn given source String array into sorted array.
split(String, String) - Static method in class org.springframework.util.StringUtils
Split a String at the first occurrence of the delimiter.
splitArrayElementsIntoProperties(String[], String) - Static method in class org.springframework.util.StringUtils
Take an array Strings and split each element based on the given delimiter.
splitArrayElementsIntoProperties(String[], String, String) - Static method in class org.springframework.util.StringUtils
Take an array Strings and split each element based on the given delimiter.
startsWithIgnoreCase(String, String) - Static method in class org.springframework.util.StringUtils
Test if the given String starts with the specified prefix, ignoring upper/lower case.
state(boolean, String) - Static method in class org.springframework.util.Assert
Assert a boolean expression, throwing IllegalStateException if the test result is false.
state(boolean) - Static method in class org.springframework.util.Assert
Assert a boolean expression, throwing IllegalStateException if the test result is false.
StringUtils - Class in org.springframework.util
Miscellaneous String utility methods.
StringUtils() - Constructor for class org.springframework.util.StringUtils
 
stripFilenameExtension(String) - Static method in class org.springframework.util.StringUtils
Strip the filename extension from the given path, e.g.
substringMatch(CharSequence, int, CharSequence) - Static method in class org.springframework.util.StringUtils
Test whether the given string matches the given substring at the given index.
suspendEncoding() - Method in class org.springframework.util.support.Base64.OutputStream
Suspends encoding of the stream.

T

toArray(Enumeration<E>, A[]) - Static method in class org.springframework.util.CollectionUtils
Marshal the elements from the given enumeration into an array of the given type.
toIterator(Enumeration<E>) - Static method in class org.springframework.util.CollectionUtils
Adapt an enumeration to an iterator.
tokenizeToStringArray(String, String) - Static method in class org.springframework.util.StringUtils
Tokenize the given String into a String array via a StringTokenizer.
tokenizeToStringArray(String, String, boolean, boolean) - Static method in class org.springframework.util.StringUtils
Tokenize the given String into a String array via a StringTokenizer.
toLanguageTag(Locale) - Static method in class org.springframework.util.StringUtils
Determine the RFC 3066 compliant language tag, as used for the HTTP "Accept-Language" header.
toMultiValueMap(Map<K, List<V>>) - Static method in class org.springframework.util.CollectionUtils
Adapts a Map<K, List<V>> to an MultiValueMap<K,V>.
toObjectArray(Object) - Static method in class org.springframework.util.ObjectUtils
Convert the given array (which may be a primitive array) to an object array (if necessary of primitive wrapper objects).
toSingleValueMap() - Method in class org.springframework.util.LinkedMultiValueMap
 
toSingleValueMap() - Method in interface org.springframework.util.MultiValueMap
Returns the first values contained in this MultiValueMap.
toString() - Method in class org.springframework.core.io.AbstractResource
This implementation returns the description of this resource.
toString() - Method in class org.springframework.util.LinkedMultiValueMap
 
toStringArray(Collection<String>) - Static method in class org.springframework.util.StringUtils
Copy the given Collection into a String array.
toStringArray(Enumeration<String>) - Static method in class org.springframework.util.StringUtils
Copy the given Enumeration into a String array.
toURI(URL) - Static method in class org.springframework.util.ResourceUtils
Create a URI instance for the given URL, replacing spaces with "%20" quotes first.
toURI(String) - Static method in class org.springframework.util.ResourceUtils
Create a URI instance for the given location String, replacing spaces with "%20" quotes first.
trimAllWhitespace(String) - Static method in class org.springframework.util.StringUtils
Trim all whitespace from the given String: leading, trailing, and inbetween characters.
trimArrayElements(String[]) - Static method in class org.springframework.util.StringUtils
Trim the elements of the given String array, calling String.trim() on each of them.
trimLeadingCharacter(String, char) - Static method in class org.springframework.util.StringUtils
Trim all occurences of the supplied leading character from the given String.
trimLeadingWhitespace(String) - Static method in class org.springframework.util.StringUtils
Trim leading whitespace from the given String.
trimTrailingCharacter(String, char) - Static method in class org.springframework.util.StringUtils
Trim all occurences of the supplied trailing character from the given String.
trimTrailingWhitespace(String) - Static method in class org.springframework.util.StringUtils
Trim trailing whitespace from the given String.
trimWhitespace(String) - Static method in class org.springframework.util.StringUtils
Trim leading and trailing whitespace from the given String.
TypeMismatchException - Exception in org.springframework.beans
Exception thrown on a type mismatch when trying to set a bean property.
TypeMismatchException(PropertyChangeEvent, Class<?>) - Constructor for exception org.springframework.beans.TypeMismatchException
Create a new TypeMismatchException.
TypeMismatchException(PropertyChangeEvent, Class<?>, Throwable) - Constructor for exception org.springframework.beans.TypeMismatchException
Create a new TypeMismatchException.
TypeMismatchException(Object, Class<?>) - Constructor for exception org.springframework.beans.TypeMismatchException
Create a new TypeMismatchException without PropertyChangeEvent.
TypeMismatchException(Object, Class<?>, Throwable) - Constructor for exception org.springframework.beans.TypeMismatchException
Create a new TypeMismatchException without PropertyChangeEvent.
TypeUtils - Class in org.springframework.util
Utility to work with Java 5 generic type parameters.
TypeUtils() - Constructor for class org.springframework.util.TypeUtils
 

U

uncapitalize(String) - Static method in class org.springframework.util.StringUtils
Uncapitalize a String, changing the first letter to lower case as per Character.toLowerCase(char).
unmodifiableMultiValueMap(MultiValueMap<? extends K, ? extends V>) - Static method in class org.springframework.util.CollectionUtils
Returns an unmodifiable view of the specified multi-value map.
unqualify(String) - Static method in class org.springframework.util.StringUtils
Unqualify a string qualified by a '.' dot character.
unqualify(String, char) - Static method in class org.springframework.util.StringUtils
Unqualify a string qualified by a separator character.
URL_PROTOCOL_CODE_SOURCE - Static variable in class org.springframework.util.ResourceUtils
URL protocol for an entry from an OC4J jar file: "code-source"
URL_PROTOCOL_FILE - Static variable in class org.springframework.util.ResourceUtils
URL protocol for a file in the file system: "file"
URL_PROTOCOL_JAR - Static variable in class org.springframework.util.ResourceUtils
URL protocol for an entry from a jar file: "jar"
URL_PROTOCOL_VFS - Static variable in class org.springframework.util.ResourceUtils
URL protocol for a JBoss VFS resource: "vfs"
URL_PROTOCOL_VFSZIP - Static variable in class org.springframework.util.ResourceUtils
URL protocol for an entry from a JBoss jar file: "vfszip"
URL_PROTOCOL_WSJAR - Static variable in class org.springframework.util.ResourceUtils
URL protocol for an entry from a WebSphere jar file: "wsjar"
URL_PROTOCOL_ZIP - Static variable in class org.springframework.util.ResourceUtils
URL protocol for an entry from a zip file: "zip"
URL_SAFE - Static variable in class org.springframework.util.support.Base64
Encode using Base64-like encoding that is URL- and Filename-safe as described in Section 4 of RFC3548: http://www.faqs.org/rfcs/rfc3548.html.
UrlResource - Class in org.springframework.core.io
Resource implementation for java.net.URL locators.
UrlResource(URL) - Constructor for class org.springframework.core.io.UrlResource
Create a new UrlResource.
UrlResource(URI) - Constructor for class org.springframework.core.io.UrlResource
Create a new UrlResource.
UrlResource(String) - Constructor for class org.springframework.core.io.UrlResource
Create a new UrlResource.
USER_DECLARED_METHODS - Static variable in class org.springframework.util.ReflectionUtils
Pre-built MethodFilter that matches all non-bridge methods which are not declared on java.lang.Object.

V

values() - Method in class org.springframework.util.LinkedMultiValueMap
 

W

WritableResource - Interface in org.springframework.core.io
Extended interface for a resource that supports writing to it.
write(int) - Method in class org.springframework.util.support.Base64.OutputStream
Writes the byte to the output stream after converting to/from Base64 notation.
write(byte[], int, int) - Method in class org.springframework.util.support.Base64.OutputStream
Calls Base64.OutputStream.write(int) repeatedly until len bytes are written.

A B C D E F G H I J K L M N O P Q R S T U V W
spring-android-core