public enum ModularityStrategy extends Enum<ModularityStrategy>
| Enum Constant and Description |
|---|
DONT_USE_MODULARITY |
USE_MODULARITY |
| Modifier and Type | Method and Description |
|---|---|
static ModularityStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModularityStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModularityStrategy USE_MODULARITY
public static final ModularityStrategy DONT_USE_MODULARITY
public static ModularityStrategy[] values()
for (ModularityStrategy c : ModularityStrategy.values()) System.out.println(c);
public static ModularityStrategy 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 © 2014. All rights reserved.