Package ca.cgjennings.apps.arkham
Enum StrangeEons.ReleaseType
- java.lang.Object
-
- java.lang.Enum<StrangeEons.ReleaseType>
-
- ca.cgjennings.apps.arkham.StrangeEons.ReleaseType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StrangeEons.ReleaseType>
- Enclosing class:
- StrangeEons
public static enum StrangeEons.ReleaseType extends java.lang.Enum<StrangeEons.ReleaseType>
Describes the type of release by which this build was made available to the public.- See Also:
StrangeEons.getReleaseType()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALPHA
An alpha release means the the current version is still being very actively developed.BETA
A beta release is not yet ready to be considered a general release.DEVELOPMENT
A development release is sometimes made available to plug-in developers to prepare for major new features.GENERAL
A general release is intended to be stable and feature complete.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StrangeEons.ReleaseType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StrangeEons.ReleaseType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GENERAL
public static final StrangeEons.ReleaseType GENERAL
A general release is intended to be stable and feature complete.
-
BETA
public static final StrangeEons.ReleaseType BETA
A beta release is not yet ready to be considered a general release. The feature set is generally complete, but it has not been thoroughly tested and it may still contain significant bugs. Development releases will display the build number and the Greek letter beta (β) in the application title bar.
-
ALPHA
public static final StrangeEons.ReleaseType ALPHA
An alpha release means the the current version is still being very actively developed. Features and public APIs may be incomplete, and may change radically or be added or removed from release to release. While mature features are likely to work normally, newer features may only have seen minimal testing. Development releases will display the build number and the Greek letter alpha (α) in the application title bar.
-
DEVELOPMENT
public static final StrangeEons.ReleaseType DEVELOPMENT
A development release is sometimes made available to plug-in developers to prepare for major new features. Development releases do not appear on the regular download page. A development release has all of the qualities of an alpha release, only moreso. Development releases will display the build number and the Greek letter pi (π) in the application title bar.
-
-
Method Detail
-
values
public static StrangeEons.ReleaseType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StrangeEons.ReleaseType c : StrangeEons.ReleaseType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StrangeEons.ReleaseType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-