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