com.ibm.systemz.common.editor.extensionpoints.contentassist
Enum ECompletionProposalType

java.lang.Object
  extended by java.lang.Enum<ECompletionProposalType>
      extended by com.ibm.systemz.common.editor.extensionpoints.contentassist.ECompletionProposalType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ECompletionProposalType>

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

Enumeration of built in proposal types


Enum Constant Summary
COBOL_DATA_DESC
          A COBOL Data Descriptor
COBOL_FILE_DESC
          A COBOL File Descriptor
COBOL_IMPLICIT_DATA_DECL
          A COBOL Implicit Data Declaration
COBOL_INDEX_NAME
          A COBOL Index Name
COBOL_MNEMONIC
          A COBOL Mnemonic
COBOL_PARAGRAPH
          A COBOL Paragraph Name
COBOL_SECTION
          A COBOL Section Name
COBOL_SORT_DESC
          A COBOL Sort Descriptor
KEYWORD
          A keyword proposal
PLI_BUILTIN_FUNCTION
          A PL/I Built-in Function
PLI_DATA_DECL
          A PL/I Data Declaration
PLI_IMPLICIT_DATA_DECL
          A PL/I Implicit Data Declaration
PLI_LABEL
          A PL/I Label
 
Method Summary
static ECompletionProposalType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ECompletionProposalType[] values()
          Returns an array containing the constants of this enum type, in the order they are 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

KEYWORD

public static final ECompletionProposalType KEYWORD
A keyword proposal


COBOL_SECTION

public static final ECompletionProposalType COBOL_SECTION
A COBOL Section Name


COBOL_PARAGRAPH

public static final ECompletionProposalType COBOL_PARAGRAPH
A COBOL Paragraph Name


COBOL_DATA_DESC

public static final ECompletionProposalType COBOL_DATA_DESC
A COBOL Data Descriptor


COBOL_FILE_DESC

public static final ECompletionProposalType COBOL_FILE_DESC
A COBOL File Descriptor


COBOL_SORT_DESC

public static final ECompletionProposalType COBOL_SORT_DESC
A COBOL Sort Descriptor


COBOL_MNEMONIC

public static final ECompletionProposalType COBOL_MNEMONIC
A COBOL Mnemonic


COBOL_INDEX_NAME

public static final ECompletionProposalType COBOL_INDEX_NAME
A COBOL Index Name


COBOL_IMPLICIT_DATA_DECL

public static final ECompletionProposalType COBOL_IMPLICIT_DATA_DECL
A COBOL Implicit Data Declaration


PLI_LABEL

public static final ECompletionProposalType PLI_LABEL
A PL/I Label


PLI_DATA_DECL

public static final ECompletionProposalType PLI_DATA_DECL
A PL/I Data Declaration


PLI_IMPLICIT_DATA_DECL

public static final ECompletionProposalType PLI_IMPLICIT_DATA_DECL
A PL/I Implicit Data Declaration


PLI_BUILTIN_FUNCTION

public static final ECompletionProposalType PLI_BUILTIN_FUNCTION
A PL/I Built-in Function

Method Detail

values

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

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

valueOf

public static ECompletionProposalType 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