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