public static enum HFileBlockType.BlockCategory extends Enum<HFileBlockType.BlockCategory>
| Enum Constant and Description |
|---|
ALL_CATEGORIES |
BLOOM |
DATA |
INDEX |
META |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static HFileBlockType.BlockCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HFileBlockType.BlockCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HFileBlockType.BlockCategory DATA
public static final HFileBlockType.BlockCategory META
public static final HFileBlockType.BlockCategory INDEX
public static final HFileBlockType.BlockCategory BLOOM
public static final HFileBlockType.BlockCategory ALL_CATEGORIES
public static final HFileBlockType.BlockCategory UNKNOWN
public static HFileBlockType.BlockCategory[] values()
for (HFileBlockType.BlockCategory c : HFileBlockType.BlockCategory.values()) System.out.println(c);
public static HFileBlockType.BlockCategory 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 © 2024 The Apache Software Foundation. All rights reserved.