public static enum LongCombiner.Type extends Enum<LongCombiner.Type>
Enum Constant and Description |
---|
FIXEDLEN
indicates a fixed-length (8-byte) encoding of a Long using
LongCombiner.FixedLenEncoder |
STRING
indicates a string representation of a Long using
LongCombiner.StringEncoder |
VARLEN
indicates a variable-length encoding of a Long using
LongCombiner.VarLenEncoder |
Modifier and Type | Method and Description |
---|---|
static LongCombiner.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LongCombiner.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LongCombiner.Type VARLEN
LongCombiner.VarLenEncoder
public static final LongCombiner.Type FIXEDLEN
LongCombiner.FixedLenEncoder
public static final LongCombiner.Type STRING
LongCombiner.StringEncoder
public static LongCombiner.Type[] values()
for (LongCombiner.Type c : LongCombiner.Type.values()) System.out.println(c);
public static LongCombiner.Type 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 © 2011–2018 The Apache Software Foundation. All rights reserved.