public enum Inline extends Enum<Inline> implements FlowElementAttribute
Enum Constant and Description |
---|
DEFAULT
Flattens flow-parts with default manner (may be configured by compiler).
|
FORCE_AGGREGATE
Flattens flow-parts directly.
|
KEEP_SEGREGATED
Flattens flow-parts with inserting stage boundaries into its I/O ports.
|
Modifier and Type | Method and Description |
---|---|
static Inline |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Inline[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
getDeclaringClass
public static final Inline FORCE_AGGREGATE
public static final Inline KEEP_SEGREGATED
public static final Inline DEFAULT
public static Inline[] values()
for (Inline c : Inline.values()) System.out.println(c);
public static Inline 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 nullCopyright © 2011–2019 Asakusa Framework Team. All rights reserved.