org.springframework.config.java.annotation
Enum DependencyCheck
java.lang.Object
java.lang.Enum<DependencyCheck>
org.springframework.config.java.annotation.DependencyCheck
- All Implemented Interfaces:
- Serializable, Comparable<DependencyCheck>
public enum DependencyCheck
- extends Enum<DependencyCheck>
Annotation representing a Spring IoC dependency check status.
- Author:
- Rod Johnson
- See Also:
AbstractBeanDefinition
UNSPECIFIED
public static final DependencyCheck UNSPECIFIED
NONE
public static final DependencyCheck NONE
SIMPLE
public static final DependencyCheck SIMPLE
OBJECTS
public static final DependencyCheck OBJECTS
ALL
public static final DependencyCheck ALL
values
public static final DependencyCheck[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(DependencyCheck c : DependencyCheck.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static DependencyCheck valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
value
public int value()
Copyright � 2005-2008 Spring Framework. All Rights Reserved.