public static enum IResourceBuilder.CompactionType extends Enum<IResourceBuilder.CompactionType>
Enum Constant and Description |
---|
BYTEBUF
Stores all json inner documents in a contiguous bytebuf.
|
INPLACE
Similar to the STRING optimisation but the update of newly loaded values is
Update the
|
NONE
No compaction.
|
STRING
Inner tuples are kept as JSON strings.
|
Modifier and Type | Method and Description |
---|---|
static IResourceBuilder.CompactionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IResourceBuilder.CompactionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IResourceBuilder.CompactionType NONE
public static final IResourceBuilder.CompactionType STRING
Prefer the bytebuf below much more efficient.
public static final IResourceBuilder.CompactionType BYTEBUF
public static final IResourceBuilder.CompactionType INPLACE
public static IResourceBuilder.CompactionType[] values()
for (IResourceBuilder.CompactionType c : IResourceBuilder.CompactionType.values()) System.out.println(c);
public static IResourceBuilder.CompactionType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2023. All rights reserved.