public static enum CompileEnvironment.Support extends Enum<CompileEnvironment.Support>
CompileEnvironment
.Enum Constant and Description |
---|
DATA_MODEL_REPOSITORY
Supports data model repository.
|
ENUM_CONSTANT_PARAMETER
Accepts enum constant as operator parameter.
|
FLOWPART_EXTERNAL_IO
Supports external I/O ports in flow parts.
|
FORCE_GENERATE_IMPLEMENTATION
Always generate implementation classes.
|
FORCE_NORMALIZE_MEMBER_NAME
Always uses the normalized member name for operator factory methods.
|
FORCE_REGENERATE_RESOURCES
Forcibly regenerates resources.
|
OPERATOR_DRIVER
Supports operator drivers.
|
STRICT_OPTIONAL_OUTPUT_CONNECTIVITY
Operator outputs must not be opened even if they are optional.
|
STRICT_PARAMETER_ORDER
Operator method parameters must be strict ordered.
|
UNBOUND_PROJECTION
Accepts unbound projective models.
|
Modifier and Type | Method and Description |
---|---|
void |
set(CompileEnvironment target,
boolean value)
Sets this feature.
|
static CompileEnvironment.Support |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompileEnvironment.Support[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompileEnvironment.Support OPERATOR_DRIVER
public static final CompileEnvironment.Support DATA_MODEL_REPOSITORY
public static final CompileEnvironment.Support STRICT_PARAMETER_ORDER
public static final CompileEnvironment.Support STRICT_OPTIONAL_OUTPUT_CONNECTIVITY
public static final CompileEnvironment.Support FORCE_REGENERATE_RESOURCES
public static final CompileEnvironment.Support FORCE_GENERATE_IMPLEMENTATION
public static final CompileEnvironment.Support FORCE_NORMALIZE_MEMBER_NAME
public static final CompileEnvironment.Support ENUM_CONSTANT_PARAMETER
public static final CompileEnvironment.Support UNBOUND_PROJECTION
public static final CompileEnvironment.Support FLOWPART_EXTERNAL_IO
public static CompileEnvironment.Support[] values()
for (CompileEnvironment.Support c : CompileEnvironment.Support.values()) System.out.println(c);
public static CompileEnvironment.Support valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic void set(CompileEnvironment target, boolean value)
target
- the target environmentvalue
- the valueCopyright © 2011–2019 Asakusa Framework Team. All rights reserved.