EclipseLink 2.5.0, build 'v20130507-3faac2b' API Reference

org.eclipse.persistence.jpa.jpql.tools
Enum ContentAssistProposals.ClassType

java.lang.Object
  extended by java.lang.Enum<ContentAssistProposals.ClassType>
      extended by org.eclipse.persistence.jpa.jpql.tools.ContentAssistProposals.ClassType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ContentAssistProposals.ClassType>
Enclosing interface:
ContentAssistProposals

public static enum ContentAssistProposals.ClassType
extends java.lang.Enum<ContentAssistProposals.ClassType>

This enumeration determines the type of classes returned by ContentAssistProposals.classNames().


Enum Constant Summary
ENUM
          Indicates the only class type allowed is an enum type.
INSTANTIABLE
          Indicates the class has to be instantiable, i.e. anonymous, interfaces, enums, annotations are not allowed.
 
Method Summary
static ContentAssistProposals.ClassType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ContentAssistProposals.ClassType[] 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

ENUM

public static final ContentAssistProposals.ClassType ENUM
Indicates the only class type allowed is an enum type.


INSTANTIABLE

public static final ContentAssistProposals.ClassType INSTANTIABLE
Indicates the class has to be instantiable, i.e. anonymous, interfaces, enums, annotations are not allowed.

Method Detail

values

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

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

valueOf

public static ContentAssistProposals.ClassType 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
java.lang.NullPointerException - if the argument is null

EclipseLink 2.5.0, build 'v20130507-3faac2b' API Reference