org.springframework.jee.validation
Enum Platform
java.lang.Object
java.lang.Enum<Platform>
org.springframework.jee.validation.Platform
- All Implemented Interfaces:
- Serializable, Comparable<Platform>
public enum Platform
- extends Enum<Platform>
Enumeration for JEE Platform revisions.
Identifies different specification rule annotations
that should be applied for objects in this platform.
- Author:
- Rod Johnson
JEE_5_0
public static final Platform JEE_5_0
JEE_6_0
public static final Platform JEE_6_0
values
public static final Platform[] 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(Platform c : Platform.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static Platform 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
getAnnotations
public List<Class> getAnnotations()
Copyright © 2006-2008 SpringSource (formerly Interface21). All Rights Reserved.