public static enum TrieProvider.OffsetType extends Enum<TrieProvider.OffsetType>
| Enum Constant and Description |
|---|
Bits16
The offsets in the node are 16 bit integers.
|
Bits32
The offsets in the node are 32 bit integers.
|
Bits64
The offsets in the node are 64 bit integers.
|
| Modifier and Type | Method and Description |
|---|---|
static TrieProvider.OffsetType |
fromByte(byte value) |
static TrieProvider.OffsetType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TrieProvider.OffsetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrieProvider.OffsetType Bits16
public static final TrieProvider.OffsetType Bits32
public static final TrieProvider.OffsetType Bits64
public static TrieProvider.OffsetType[] values()
for (TrieProvider.OffsetType c : TrieProvider.OffsetType.values()) System.out.println(c);
public static TrieProvider.OffsetType 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 static TrieProvider.OffsetType fromByte(byte value)
Copyright © 2017 51Degrees. All rights reserved.