public enum ObjectCompressionType extends java.lang.Enum<ObjectCompressionType>
| Enum Constant and Description |
|---|
ALL
Object compression is used wherever possible.
|
LEAVE_UNCHANGED
The current object compression is unchanged.
|
NONE
No object compression is used.
|
STRUCTURE
Only logical structure information uses object compression.
|
| Modifier and Type | Method and Description |
|---|---|
static ObjectCompressionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjectCompressionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectCompressionType NONE
public static final ObjectCompressionType STRUCTURE
public static final ObjectCompressionType LEAVE_UNCHANGED
public static final ObjectCompressionType ALL
public static ObjectCompressionType[] values()
for (ObjectCompressionType c : ObjectCompressionType.values()) System.out.println(c);
public static ObjectCompressionType 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