Package com.datalogics.PDFL
Enum Class ObjectCompressionType
- All Implemented Interfaces:
Serializable,Comparable<ObjectCompressionType>,Constable
Enumerator to allow the selection of object compression type to Set the values for object compression type.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionObject compression is used wherever possible.The current object compression is unchanged.No object compression is used.Only logical structure information uses object compression. -
Method Summary
Modifier and TypeMethodDescriptionstatic ObjectCompressionTypeReturns the enum constant of this class with the specified name.static ObjectCompressionType[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
NONE
No object compression is used. -
STRUCTURE
Only logical structure information uses object compression. -
LEAVE_UNCHANGED
The current object compression is unchanged. -
ALL
Object compression is used wherever possible.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-