Package | Description |
---|---|
org.monte.media |
Defines a framework for media processing and provides default implementations.
|
Modifier and Type | Field and Description |
---|---|
java.util.EnumSet<BufferFlag> |
Buffer.flags
A flag mask that describes the boolean attributes for this buffer.
|
Modifier and Type | Method and Description |
---|---|
static BufferFlag |
BufferFlag.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BufferFlag[] |
BufferFlag.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
Buffer.clearFlag(BufferFlag flag)
Convenience method for clearing a flag.
|
boolean |
Buffer.isFlag(BufferFlag flag)
Returns true if the specified flag is set.
|
void |
Buffer.setFlag(BufferFlag flag)
Convenience method for setting a flag.
|
void |
Buffer.setFlag(BufferFlag flag,
boolean value)
Sets or clears the specified flag.
|
void |
Buffer.setFlagsTo(BufferFlag... flags)
Clears all flags, and then sets the specified flag.
|
Modifier and Type | Method and Description |
---|---|
void |
Buffer.setFlagsTo(java.util.EnumSet<BufferFlag> flags)
Clears all flags, and then sets the specified flag.
|