public enum BlockType extends Enum<BlockType> implements org.apache.jena.atlas.io.Printable, Named
| Enum Constant and Description |
|---|
BPTREE_BRANCH |
BPTREE_LEAF |
BTREE_NODE |
DICTIONARY |
FREE |
RECORD_BLOCK |
UNDEF |
| Modifier and Type | Method and Description |
|---|---|
static BlockType |
extract(int x) |
String |
getName() |
int |
id() |
void |
output(org.apache.jena.atlas.io.IndentedWriter out) |
String |
toString() |
static BlockType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlockType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockType FREE
public static final BlockType BTREE_NODE
public static final BlockType BPTREE_BRANCH
public static final BlockType BPTREE_LEAF
public static final BlockType DICTIONARY
public static final BlockType RECORD_BLOCK
public static final BlockType UNDEF
public static BlockType[] values()
for (BlockType c : BlockType.values()) System.out.println(c);
public static BlockType 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 nullpublic void output(org.apache.jena.atlas.io.IndentedWriter out)
output in interface org.apache.jena.atlas.io.Printablepublic final int id()
public static BlockType extract(int x)
Licensed under the Apache License, Version 2.0