org.eclipse.jpt.core
Enum JpaPlatformVariation.Supported

java.lang.Object
  extended by java.lang.Enum<JpaPlatformVariation.Supported>
      extended by org.eclipse.jpt.core.JpaPlatformVariation.Supported
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<JpaPlatformVariation.Supported>
Enclosing interface:
JpaPlatformVariation

public static enum JpaPlatformVariation.Supported
extends java.lang.Enum<JpaPlatformVariation.Supported>


Enum Constant Summary
MAYBE
          in the JPA spec, might not supported be supported by a particular provider
NO
          not supported by the platform
YES
          fully supported by the platform
 
Method Summary
static JpaPlatformVariation.Supported valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static JpaPlatformVariation.Supported[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

YES

public static final JpaPlatformVariation.Supported YES
fully supported by the platform


NO

public static final JpaPlatformVariation.Supported NO
not supported by the platform


MAYBE

public static final JpaPlatformVariation.Supported MAYBE
in the JPA spec, might not supported be supported by a particular provider

Method Detail

values

public static final JpaPlatformVariation.Supported[] 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(JpaPlatformVariation.Supported c : JpaPlatformVariation.Supported.values())
        System.out.println(c);

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

valueOf

public static JpaPlatformVariation.Supported 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