Package cdc.issues.io
Enum Class IssuesIoFactoryFeatures.Hint
- All Implemented Interfaces:
Serializable,Comparable<IssuesIoFactoryFeatures.Hint>,Constable
- Enclosing class:
- IssuesIoFactoryFeatures
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIf enabled, uses Fast ODS.If enabled, uses ODF Toolkit simple API.If enabled, uses POI Streaming API.If enabled, pretty prints result. -
Method Summary
Modifier and TypeMethodDescriptionstatic IssuesIoFactoryFeatures.HintReturns the enum constant of this class with the specified name.static IssuesIoFactoryFeatures.Hint[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
VERBOSE
-
PRETTY_PRINT
If enabled, pretty prints result. -
ODS_FAST
If enabled, uses Fast ODS.Specific to Workbooks.
WARNING: This is still experimental and incomplete. Do not use. -
ODS_SIMPLE
If enabled, uses ODF Toolkit simple API.Specific to Workbooks.
WARNING: This is very slow, but seems to work. -
POI_STREAMING
If enabled, uses POI Streaming API.Specific to Workbooks.
This requires less memory, but is not compliant with certain features.
-
-
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
-