public static enum IConfigInterleavingImpl.InterleavingMode extends java.lang.Enum<IConfigInterleavingImpl.InterleavingMode>
Enum Constant and Description |
---|
Buffered
Noninterleaved.
|
Capture
Approximate interleaving with less overhead than INTERLEAVE_FULL.
|
Full
Full, precise interleaving of audio samples and video frames.
|
None
Noninterleaved.
|
Modifier and Type | Method and Description |
---|---|
static IConfigInterleavingImpl.InterleavingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IConfigInterleavingImpl.InterleavingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IConfigInterleavingImpl.InterleavingMode None
public static final IConfigInterleavingImpl.InterleavingMode Capture
public static final IConfigInterleavingImpl.InterleavingMode Full
public static final IConfigInterleavingImpl.InterleavingMode Buffered
public static IConfigInterleavingImpl.InterleavingMode[] values()
for (IConfigInterleavingImpl.InterleavingMode c : IConfigInterleavingImpl.InterleavingMode.values()) System.out.println(c);
public static IConfigInterleavingImpl.InterleavingMode 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