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