edu.washington.cs.sounddetector.server.api
Enum MethodResult.FailureReason

java.lang.Object
  extended by java.lang.Enum<MethodResult.FailureReason>
      extended by edu.washington.cs.sounddetector.server.api.MethodResult.FailureReason
All Implemented Interfaces:
Serializable, Comparable<MethodResult.FailureReason>
Enclosing class:
MethodResult<T extends Method>

public static enum MethodResult.FailureReason
extends Enum<MethodResult.FailureReason>

FailureReason enumerates all the possible reasons the execution of a method could fail.


Enum Constant Summary
CANT_BUILD_CLASSIFIER
           
DETECTOR_ID_DOES_NOT_EXIST
           
PHONE_DOES_NOT_EXIST
           
SOUND_CLASS_DOES_NOT_EXIST
           
SOUND_ID_DOES_NOT_EXIST
           
 
Method Summary
static MethodResult.FailureReason valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MethodResult.FailureReason[] 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

CANT_BUILD_CLASSIFIER

public static final MethodResult.FailureReason CANT_BUILD_CLASSIFIER

PHONE_DOES_NOT_EXIST

public static final MethodResult.FailureReason PHONE_DOES_NOT_EXIST

DETECTOR_ID_DOES_NOT_EXIST

public static final MethodResult.FailureReason DETECTOR_ID_DOES_NOT_EXIST

SOUND_ID_DOES_NOT_EXIST

public static final MethodResult.FailureReason SOUND_ID_DOES_NOT_EXIST

SOUND_CLASS_DOES_NOT_EXIST

public static final MethodResult.FailureReason SOUND_CLASS_DOES_NOT_EXIST
Method Detail

values

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

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

valueOf

public static MethodResult.FailureReason valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2012. All Rights Reserved.