com.android.jill.api
Enum JillProvider.SubReleaseKind

java.lang.Object
  extended by java.lang.Enum<JillProvider.SubReleaseKind>
      extended by com.android.jill.api.JillProvider.SubReleaseKind
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<JillProvider.SubReleaseKind>
Enclosing interface:
JillProvider

public static enum JillProvider.SubReleaseKind
extends java.lang.Enum<JillProvider.SubReleaseKind>

The kind of sub-release.


Enum Constant Summary
ALPHA
          A sub-release that is not feature complete, tested.
BETA
          A sub-release that is feature complete, tested, but likely contains known or unknown bugs.
CANDIDATE
          A pre-production sub-release, tested.
ENGINEERING
          A sub-release from an engineering development, not tested, not in the code base repository.
PRE_ALPHA
          A sub-release that is not feature complete, not tested.
RELEASE
          A production and stable sub-release.
 
Method Summary
static JillProvider.SubReleaseKind valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static JillProvider.SubReleaseKind[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ENGINEERING

public static final JillProvider.SubReleaseKind ENGINEERING
A sub-release from an engineering development, not tested, not in the code base repository.


PRE_ALPHA

public static final JillProvider.SubReleaseKind PRE_ALPHA
A sub-release that is not feature complete, not tested.


ALPHA

public static final JillProvider.SubReleaseKind ALPHA
A sub-release that is not feature complete, tested.


BETA

public static final JillProvider.SubReleaseKind BETA
A sub-release that is feature complete, tested, but likely contains known or unknown bugs.


CANDIDATE

public static final JillProvider.SubReleaseKind CANDIDATE
A pre-production sub-release, tested.


RELEASE

public static final JillProvider.SubReleaseKind RELEASE
A production and stable sub-release.

Method Detail

values

public static JillProvider.SubReleaseKind[] 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 (JillProvider.SubReleaseKind c : JillProvider.SubReleaseKind.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static JillProvider.SubReleaseKind 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 name
java.lang.NullPointerException - if the argument is null