public static enum ProductConfig.Profile extends Enum<ProductConfig.Profile>
| Modifier and Type | Method and Description |
|---|---|
static ProductConfig.Profile |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProductConfig.Profile[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProductConfig.Profile COMMUNITY
public static final ProductConfig.Profile PRODUCT
public static ProductConfig.Profile[] values()
for (ProductConfig.Profile c : ProductConfig.Profile.values()) System.out.println(c);
public static ProductConfig.Profile 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 JBoss, a division of Red Hat. All rights reserved.