站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Spring Framework 2.1.0 API 文档英文版

FilterType (Spring Framework API 2.1) - Spring Framework 2.1.0 API 文档英文版


The Spring Framework

org.springframework.core.typefilter
Enum FilterType

java.lang.Object
  extended by java.lang.Enum<FilterType>
      extended by org.springframework.core.typefilter.FilterType
All Implemented Interfaces:
Serializable, Comparable<FilterType>

public enum FilterType
extends Enum<FilterType>

Enumeration of the valid type filters to be added for annotation-driven configuration.

Since:
2.1
Author:
Mark Fisher

Enum Constant Summary
ANNOTATION
           
ASPECTJ_PATTERN
           
ASSIGNABLE_TYPE
           
INHERITABLE_ANNOTATION
           
REGEX_PATTERN
           
 
Method Summary
static FilterType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FilterType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ANNOTATION

public static final FilterType ANNOTATION

ASPECTJ_PATTERN

public static final FilterType ASPECTJ_PATTERN

ASSIGNABLE_TYPE

public static final FilterType ASSIGNABLE_TYPE

INHERITABLE_ANNOTATION

public static final FilterType INHERITABLE_ANNOTATION

REGEX_PATTERN

public static final FilterType REGEX_PATTERN
Method Detail

values

public static FilterType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (FilterType c : FilterType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static FilterType 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
NullPointerException - if the argument is null

The Spring Framework

Copyright © 2002-2007 The Spring Framework.