|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<FLAC_FileEncoder.Status> javaFlacEncoder.FLAC_FileEncoder.Status
public static enum FLAC_FileEncoder.Status
Status enum for encode result
Enum Constant Summary | |
---|---|
FILE_IO_ERROR
Generic file IO Error |
|
FULL_ENCODE
Everything went well |
|
GENERAL_ERROR
Something unspecified went wrong... |
|
INTERNAL_ERROR
internal error is something that went haywire that was discovered due to internal sanity checks. |
|
OK
No errors found. |
|
OUTPUT_FILE_ERROR
Error with output file |
|
UNKNOWN
Unknown State. |
|
UNSUPPORTED_FILE
File given was not able to be read |
|
UNSUPPORTED_SAMPLE_SIZE
Sample size unsupported |
Method Summary | |
---|---|
static FLAC_FileEncoder.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static FLAC_FileEncoder.Status[] |
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 |
---|
public static final FLAC_FileEncoder.Status UNKNOWN
public static final FLAC_FileEncoder.Status FULL_ENCODE
public static final FLAC_FileEncoder.Status GENERAL_ERROR
public static final FLAC_FileEncoder.Status INTERNAL_ERROR
public static final FLAC_FileEncoder.Status UNSUPPORTED_FILE
public static final FLAC_FileEncoder.Status FILE_IO_ERROR
public static final FLAC_FileEncoder.Status UNSUPPORTED_SAMPLE_SIZE
public static final FLAC_FileEncoder.Status OUTPUT_FILE_ERROR
public static final FLAC_FileEncoder.Status OK
Method Detail |
---|
public static FLAC_FileEncoder.Status[] values()
for (FLAC_FileEncoder.Status c : FLAC_FileEncoder.Status.values()) System.out.println(c);
public static FLAC_FileEncoder.Status valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |