org.springframework.jee.validation
Enum Platform

java.lang.Object
  extended by java.lang.Enum<Platform>
      extended by org.springframework.jee.validation.Platform
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Platform>

public enum Platform
extends java.lang.Enum<Platform>

Enumeration for JEE Platform revisions. Identifies different specification rule annotations that should be applied for objects in this platform.

Author:
Rod Johnson

Enum Constant Summary
JEE_5_0
           
JEE_6_0
           
 
Method Summary
 java.util.List<java.lang.Class> getAnnotations()
           
static Platform valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Platform[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

JEE_5_0

public static final Platform JEE_5_0

JEE_6_0

public static final Platform JEE_6_0
Method Detail

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(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

getAnnotations

public java.util.List<java.lang.Class> getAnnotations()


Copyright 2006 Interface21. All Rights Reserved.