public enum ThreadFormat extends java.lang.Enum<ThreadFormat>
| Enum Constant and Description |
|---|
DYNAMIC_LZW1 |
DYNAMIC_LZW2 |
HUFFMAN_SQUEEZE |
UNCOMPRESSED |
UNIX_12BIT_COMPRESS |
UNIX_16BIT_COMPRESS |
| Modifier and Type | Method and Description |
|---|---|
static ThreadFormat |
find(int threadFormat)
Find the ThreadFormat.
|
int |
getThreadFormat() |
static ThreadFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ThreadFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ThreadFormat UNCOMPRESSED
public static final ThreadFormat HUFFMAN_SQUEEZE
public static final ThreadFormat DYNAMIC_LZW1
public static final ThreadFormat DYNAMIC_LZW2
public static final ThreadFormat UNIX_12BIT_COMPRESS
public static final ThreadFormat UNIX_16BIT_COMPRESS
public static ThreadFormat[] values()
for (ThreadFormat c : ThreadFormat.values()) System.out.println(c);
public static ThreadFormat 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 nullpublic int getThreadFormat()
public static ThreadFormat find(int threadFormat)
java.lang.IllegalArgumentException - if the thread_format is unknown