com.dynamixsoftware.intentapi
Enum Result

java.lang.Object
  extended by java.lang.Enum<Result>
      extended by com.dynamixsoftware.intentapi.Result
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Result>

public enum Result
extends java.lang.Enum<Result>


Enum Constant Summary
CANCEL
           
DISCOVER_ERROR
           
LICENSE_ERROR
           
OK
           
PRINTING_ERROR
           
SETUP_ERROR
           
 
Field Summary
static  CREATOR
           
 
Method Summary
 int describeContents()
           
 ResultType getType()
           
 void readFromParcel(Parcel in)
           
 void setType(ResultType type)
           
static Result valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Result[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 void writeToParcel(Parcel dest, int flags)
           
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

OK

public static final Result OK

CANCEL

public static final Result CANCEL

DISCOVER_ERROR

public static final Result DISCOVER_ERROR

PRINTING_ERROR

public static final Result PRINTING_ERROR

SETUP_ERROR

public static final Result SETUP_ERROR

LICENSE_ERROR

public static final Result LICENSE_ERROR
Field Detail

CREATOR

public static final  CREATOR
Method Detail

values

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

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

valueOf

public static Result 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

setType

public void setType(ResultType type)

getType

public ResultType getType()

describeContents

public int describeContents()

writeToParcel

public void writeToParcel(Parcel dest,
                          int flags)

readFromParcel

public void readFromParcel(Parcel in)