public enum CommentsImplementationType extends java.lang.Enum<CommentsImplementationType>
Enum Constant and Description |
---|
CUSTOM_MAP_BACKED
The concurrent map backed
CommentsTable in poi-shared-strings . |
POI_DEFAULT
The default
CommentsTable in POI |
TEMP_FILE_BACKED
The temp file backed
CommentsTable in poi-shared-strings . |
Modifier and Type | Method and Description |
---|---|
static CommentsImplementationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CommentsImplementationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommentsImplementationType POI_DEFAULT
CommentsTable
in POIpublic static final CommentsImplementationType TEMP_FILE_BACKED
CommentsTable
in poi-shared-strings
.
Saves on memory but still has good performance, especially if full-format text is set to false.public static final CommentsImplementationType CUSTOM_MAP_BACKED
CommentsTable
in poi-shared-strings
.
More performant if full-format text is set to false.public static CommentsImplementationType[] values()
for (CommentsImplementationType c : CommentsImplementationType.values()) System.out.println(c);
public static CommentsImplementationType 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