public static enum RunLengthIntegerWriterV2.EncodingType extends Enum<RunLengthIntegerWriterV2.EncodingType>
| Enum Constant and Description | 
|---|
| DELTA | 
| DIRECT | 
| PATCHED_BASE | 
| SHORT_REPEAT | 
| Modifier and Type | Method and Description | 
|---|---|
| static RunLengthIntegerWriterV2.EncodingType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static RunLengthIntegerWriterV2.EncodingType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final RunLengthIntegerWriterV2.EncodingType SHORT_REPEAT
public static final RunLengthIntegerWriterV2.EncodingType DIRECT
public static final RunLengthIntegerWriterV2.EncodingType PATCHED_BASE
public static final RunLengthIntegerWriterV2.EncodingType DELTA
public static RunLengthIntegerWriterV2.EncodingType[] values()
for (RunLengthIntegerWriterV2.EncodingType c : RunLengthIntegerWriterV2.EncodingType.values()) System.out.println(c);
public static RunLengthIntegerWriterV2.EncodingType 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 © 2013–2023 The Apache Software Foundation. All rights reserved.