|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<EncodingConfiguration.SubframeType> javaFlacEncoder.EncodingConfiguration.SubframeType
public static enum EncodingConfiguration.SubframeType
Defines the various subframe types that may be used. If you don't know what these are, choose EXHAUSTIVE(for description of subframe types, see the flac format documentation at http://flac.sourceforge.net/format.html)
Enum Constant Summary | |
---|---|
CONSTANT
Constant subframe, do not choose unless you are sure you're encoding digital silence |
|
EXHAUSTIVE
Best compression, slightly slower than LPC alone, lets encoder choose the best(Recommended). |
|
FIXED
Decent compression, fasted option |
|
LPC
Better compression, slower |
|
VERBATIM
No compression, simply wraps unencoded audio into a FLAC stream |
Method Summary | |
---|---|
static EncodingConfiguration.SubframeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static EncodingConfiguration.SubframeType[] |
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 EncodingConfiguration.SubframeType CONSTANT
public static final EncodingConfiguration.SubframeType FIXED
public static final EncodingConfiguration.SubframeType LPC
public static final EncodingConfiguration.SubframeType VERBATIM
public static final EncodingConfiguration.SubframeType EXHAUSTIVE
Method Detail |
---|
public static EncodingConfiguration.SubframeType[] values()
for (EncodingConfiguration.SubframeType c : EncodingConfiguration.SubframeType.values()) System.out.println(c);
public static EncodingConfiguration.SubframeType 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 |