edu.washington.cs.sounddetector.server.api
Enum MethodResult.FailureReason
java.lang.Object
java.lang.Enum<MethodResult.FailureReason>
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.
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
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.