public enum ShortBlock extends java.lang.Enum<ShortBlock>
| Enum Constant and Description |
|---|
short_block_allowed
LAME may use them, even different block types for L/R.
|
short_block_coupled
LAME may use them, but always same block types in L/R.
|
short_block_dispensed
LAME will not use short blocks, long blocks only.
|
short_block_forced
LAME will not use long blocks, short blocks only.
|
| Modifier and Type | Method and Description |
|---|---|
static ShortBlock |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ShortBlock[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShortBlock short_block_allowed
public static final ShortBlock short_block_coupled
public static final ShortBlock short_block_dispensed
public static final ShortBlock short_block_forced
public static ShortBlock[] values()
for (ShortBlock c : ShortBlock.values()) System.out.println(c);
public static ShortBlock 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