Package jetbrains.mps.generator
Enum GenerationPlanBuilder.BuilderOption
- java.lang.Object
 - 
- java.lang.Enum<GenerationPlanBuilder.BuilderOption>
 - 
- jetbrains.mps.generator.GenerationPlanBuilder.BuilderOption
 
 
 
- 
- All Implemented Interfaces:
 Serializable,Comparable<GenerationPlanBuilder.BuilderOption>
- Enclosing interface:
 - GenerationPlanBuilder
 
public static enum GenerationPlanBuilder.BuilderOption extends Enum<GenerationPlanBuilder.BuilderOption>
options ofGenerationPlanBuilder.applyGenerators(Collection, BuilderOption...)WithExtendedGeneratorsmeans not only explicitly specified generator shall take part in a transformation process, but other generators that extend it (transitively) shall take part as wellWithPriorityRulesmeans priority rules of involved generators (those explicitly specified and extending) are respected. 
- 
- 
Enum Constant Summary
Enum Constants Enum Constant Description NoneWithExtendedGeneratorsWithPriorityRules 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanpresentIn(GenerationPlanBuilder.BuilderOption... options)static GenerationPlanBuilder.BuilderOptionvalueOf(String name)Returns the enum constant of this type with the specified name.static GenerationPlanBuilder.BuilderOption[]values()Returns an array containing the constants of this enum type, in the order they are declared. 
 - 
 
- 
- 
Enum Constant Detail
- 
None
public static final GenerationPlanBuilder.BuilderOption None
 
- 
WithExtendedGenerators
public static final GenerationPlanBuilder.BuilderOption WithExtendedGenerators
 
- 
WithPriorityRules
public static final GenerationPlanBuilder.BuilderOption WithPriorityRules
 
 - 
 
- 
Method Detail
- 
values
public static GenerationPlanBuilder.BuilderOption[] 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 (GenerationPlanBuilder.BuilderOption c : GenerationPlanBuilder.BuilderOption.values()) System.out.println(c);
- Returns:
 - an array containing the constants of this enum type, in the order they are declared
 
 
- 
valueOf
public static GenerationPlanBuilder.BuilderOption valueOf(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:
 IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
 
- 
presentIn
public boolean presentIn(GenerationPlanBuilder.BuilderOption... options)
 
 - 
 
 -