org.eclipse.xtext.builder
Enum IXtextBuilderParticipant.BuildType

java.lang.Object
  extended by java.lang.Enum<IXtextBuilderParticipant.BuildType>
      extended by org.eclipse.xtext.builder.IXtextBuilderParticipant.BuildType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IXtextBuilderParticipant.BuildType>
Enclosing interface:
IXtextBuilderParticipant

public static enum IXtextBuilderParticipant.BuildType
extends java.lang.Enum<IXtextBuilderParticipant.BuildType>


Enum Constant Summary
CLEAN
           
FULL
           
INCREMENTAL
           
RECOVERY
          Triggered if the persisted builder state could not be loaded.
 
Method Summary
static IXtextBuilderParticipant.BuildType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IXtextBuilderParticipant.BuildType[] 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

INCREMENTAL

public static final IXtextBuilderParticipant.BuildType INCREMENTAL

FULL

public static final IXtextBuilderParticipant.BuildType FULL

CLEAN

public static final IXtextBuilderParticipant.BuildType CLEAN

RECOVERY

public static final IXtextBuilderParticipant.BuildType RECOVERY
Triggered if the persisted builder state could not be loaded.

Method Detail

values

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

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

valueOf

public static IXtextBuilderParticipant.BuildType 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