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