public static enum FLAC_FileEncoder.Status extends java.lang.Enum<FLAC_FileEncoder.Status>
Enum Constant and Description |
---|
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
|
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 namejava.lang.NullPointerException
- if the argument is null